首页 >后端开发 >php教程 >为什么我的服务器不能将 HTML 文件解释为 PHP?

为什么我的服务器不能将 HTML 文件解释为 PHP?

Barbara Streisand
Barbara Streisand原创
2024-12-03 12:54:10276浏览

Why Isn't My Server Interpreting HTML Files as PHP?

疑难解答:服务器无法将 HTML 解释为 PHP

问题:

用户遇到尽管在以下代码中使用了以下代码,但服务器不将 HTML 文件解释为 PHP 的问题.htaccess 文件:

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:
    尝试修改用于定位特定文件的 AddType 指令扩展:
AddType application/x-httpd-php .html .htm
  • 考虑 PHP 版本:
    对于 PHP5,相应地修改 AddType 指令:
AddType application/x-httpd-php5 .html .htm
  • 删除处理程序:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
  • FilesMatch 指令:
<FilesMatch "\.html$">
    ForceType application/x-httpd-php
</FilesMatch>

以上是为什么我的服务器不能将 HTML 文件解释为 PHP?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn