我正在尝试访问我的 wordpress 网站,几天前它还在工作,现在我收到了下载页面的提示。
我已按照许多网站上的说明尝试解决此问题,但似乎没有任何效果。我尝试通过http://www.honeytechblog.com/how-to-fix-applicationx-httpd-php-trouble-in-getting-php-to-parse/更改 .htaccess 文件
那没有用。我尝试打电话给我的托管公司,以确保他们说启用了 PHP。我清除了浏览器缓存。我打开了它提示我下载的文件,里面就是这个
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?>
为了测试以确保 PHP 确实在工作,制作了一个简单的小型 index.php,它与 THIS IS A TEST 相呼应,并且运行良好。所以我想这与Wordpress有关。有人有什么建议吗?