疑难解答:服务器无法将 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 .html .htm
AddType application/x-httpd-php5 .html .htm
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>
以上是为什么我的服务器不能将 HTML 文件解释为 PHP?的详细内容。更多信息请关注PHP中文网其他相关文章!