我的 php 主页下载 index.php 而不是在 Gandi.net 上处理

我的 php 主页下载 index.php 而不是在 Gandi.net 上处理

如果我访问我的网站主页http://www.website.com(在全新服务器上)index.php 被下载而不是被处理。我在其他文件夹上没有遇到同样的问题。我的 .htaccess 内容如下:

AddHandler php5-script .php

这是怎么回事?我怀疑是 php 配置/或 htaccess 出了问题,但我搞不清楚。求助!

编辑:我不知道这是否有帮助:这是一个 wordpress 安装,我只在网站的公共部分遇到这个问题,而不是在管理员(正确呈现)上

答案1

我认为你的经纪人错了。根据http://wiki.apache.org/httpd/PHPDownload你需要使用:

# (other modules)
# Replace the following with the correct path and version of your php module
LoadModule php5_module modules/libphp5.so
# (other modules)

<FilesMatch \.php$>
  SetHandler application/x-httpd-php
</FilesMatch>

答案2

尝试一个简单的脚本,看看它是否有效。index.php 中可能存在问题。

in test.php: 
    <?php echo phpinfo(); ?>

相关内容