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语句的方法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/php/18454.html