.html 文件中未解析的 PHP 解析
当尝试将 PHP 代码合并到 .html 文件中时,我们发现服务器确实无法可靠地解析代码。以下 .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
指定 PHP 版本 (PHP5):
AddType application/x-httpd-php5 .html .htm
禁用本机.html处理程序:
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
强制应用程序类型与 FilesMatch:
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>
以上是如何修复 .html 文件中未解决的 PHP 解析问题?的详细内容。更多信息请关注PHP中文网其他相关文章!