浏览器下载PHP文件而不是打开它们

时间:2014-05-24 01:08:14

标签: php .htaccess

我编辑了我的htaccess文件,将所有html文件解析为php.file,如下所示:

AddType application/x-httpd-php .html .htm

AddHandler application/x-httpd-php .html .htm 

页面正在下载而不是在浏览器中打开/重定向,我从未遇到过我的其他托管服务器的这个问题所以我现在很困惑。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用x-httpd-php5并添加SetHander

AddType application/x-httpd-php .htm
AddType application/x-httpd-php .html
AddHandler x-httpd-php5 .htm
AddHandler x-httpd-php5 .html

<FilesMatch "\.(htm|html|php)$">
SetHandler application/x-httpd-php
</FilesMatch>