HTM文件中的PHP語句不會被執行,如何在HTML文件中運行php代碼?
html文件執行php語句的方法:
1,修改httpd.conf,命令Apache把HTML當作PHP,
需要修改服務器裡的http.conf文件。
在Apache的httpd.conf中加入以下語句:
AddType application/x-httpd-htm .htm
Action application/x-httpd-htm “/php4/php.exe”
一般的虛擬主機,我們無法修改httpd.conf,但我們可以通過修改.htaccess來實現。
2,修改.htaccess
NEW PHP Add Handlers
SolutionIf you need an add handler for PHP please use the following:
#PHP5
AddHandler application/x-httpd-php5 .html .htm
#PHP4
AddHandler application/x-httpd-php4 .html .htm
That is if you need to parse .html files or any other extension as PHP you can place that in your .htaccess file.
以上這篇靜態html文件執行php語句的方法(推薦)就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持幫客之家。