服务器不解析.html作为PHP

前端之家收集整理的这篇文章主要介绍了服务器不解析.html作为PHP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的.htaccess文件中包含代码,但是我试图包含的 PHP代码不起作用.
Options +Includes
AddType text/html  .htm .html
AddHandler server-parsed .htm .html
AddType application/octet-stream .vcf
AddOutputFilterByType DEFLATE text/html text/htm text/plain text/css text/PHP    text/javascript application/x-javascript

解决方法

尝试:
AddType application/x-httpd-PHP .html .htm

更新1

它可能是PHP版本具体.如果你使用PHP5尝试:

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

更新2

尝试:

RemoveHandler .html .htm
AddType application/x-httpd-PHP .PHP .htm .html

或者这是另一种替代方法

<FilesMatch "\.html$">
    ForceType application/x-httpd-PHP
</FilesMatch>
原文链接:https://www.f2er.com/html/230837.html

猜你在找的HTML相关文章