嘗試在.html 檔案中執行PHP 程式碼時,您可能會遇到伺服器無法解析該檔案的問題文件為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
方法1:
AddType application/x-httpd-php .html .htm
方法2(特定於PHP5):
AddType application/x-httpd-php5 .html .htm方法2(特定於PHP5):
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html方法3:
<FilesMatch "\.html$"> ForceType application/x-httpd-php </FilesMatch>使用FilesMatch這些替代方法應該允許您在伺服器上成功地將 .html 檔案解析為 PHP。
以上是為什麼我的伺服器不能以 PHP 方式處理 .html 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!