Home  >  Article  >  php教程  >  How to execute php statements in static html files

How to execute php statements in static html files

高洛峰
高洛峰Original
2016-12-12 09:28:391404browse

The PHP statements in the HTM file will not be executed. How to run php code in the HTML file?

How to execute php statements in HTML files:

1. Modify httpd.conf and instruct Apache to treat HTML as PHP.

You need to modify the http.conf file in the server.
Add the following statement to Apache's httpd.conf:

AddType application/x-httpd-htm .htm
Action application/x-httpd-htm "/php4/php.exe"

General virtual host, we cannot Modify httpd.conf, but we can do this by modifying .htaccess.

2, modify .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.


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn