我编辑了我的htaccess文件,将所有html文件解析为php.file,如下所示:
AddType application/x-httpd-php .html .htm
AddHandler application/x-httpd-php .html .htm
页面正在下载而不是在浏览器中打开/重定向,我从未遇到过我的其他托管服务器的这个问题所以我现在很困惑。
答案 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>