时间:2021-07-01 10:21:17 帮助过:2人阅读
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的相关问题,大家可以访问Gxl网。
以上就是关于静态html文件执行php语句的方法的详细内容,更多请关注Gxl网其它相关文章!