How to make PHP code execute in .html files

Very often people ask how to make php inserts work in ordinary .html files, and in general the php code works correctly. So, you just need to edit your .htaccess file. If you do not have such a file, you can create it at the root of your site in the public_html folder

Add the following code to your .htaccess file:
AddHandler application / x-httpd-lsphp .htm .html
After adding this line to the file - you can use php inserts on your .html pages.

IMPORTANT: Make sure to back up your original .htaccess file, as making changes to this file may disrupt access to your website.

  • 204 Users Found This Useful
Was this answer helpful?

Related Articles

CMS PrestaShop Review, Installation Guidelines and Login to Control Panel

PrestaShop - one of the leading CMS for e-commerce, is a great analogue of Magento, as it is open...

How can I create push notifications in WordPress?

Push notifications are a good solution for your site. If your site is based on WordPress, you can...

How to block IP address using .htaccess file?

You can block access to your site from certain IP addresses using the .htaccess file. You need to...

How do I create a child theme in WordPress?

Child theme is a feature available in WordPress. A child theme allows you to make changes without...

How can I protect the source code of my site?

Unfortunately, the source code cannot be protected. Anyone can see the code for your site by...