.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中文網其他相關文章!