Home > Article > Backend Development > About how to execute php statements on static html files
Generally, PHP statements in HTML files will not be executed, so is there any way to run PHP code in HTML files? The editor has found some methods for you, hoping to help you.
How to execute php statements in html files:
1. Modify httpd.conf and instruct Apache to treat HTML as PHP.
Need to modify http in the server .conf file.
Add the following statement to Apache's httpd.conf:
AddType application/x-httpd-htm .htm Action application/x-httpd-htm “/php4/php.exe”
For general virtual hosts, we cannot modify httpd.conf, but we can modify .htaccess accomplish.
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.
The above method of executing php statements in static html files is the whole content. It seems very simple. I hope it can give everyone a reference.
For more HTML and PHP related issues, you can visit the php Chinese website.
The above is the detailed content of About how to execute php statements on static html files. For more information, please follow other related articles on the PHP Chinese website!