一般HTML檔案中的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語句的方法就是全部內容了,看起來很簡單,希望能給大家一個參考。
關於更多HTML以及PHP的相關問題,大家可以存取php中文網。
以上是關於靜態html檔執行php語句的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!