Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com
There are times wherein you are required to parse HTML web pages as PHP. Suppose, you have older HTML web pages and you are required to add some additional functionality that can only be achieved by programming language like PHP. Will you modify each web page manually and add PHP code? This sound little impractical and monotonous task. To get rid of this exercise, you can parse HTML web pages as PHP using .htacccess file. All you need to do is, locate .htaccess file, add one of the following line according to your setup and save the file.

If your web server is using suPHP add following line in .httaccess.

AddHandler x-httpd-php .html .htm
OR

AddType application/x-httpd-php .html .htm

If apache is executing php as CGI use following.

AddHandler application/x-httpd-php5 .html .htm

If your server is using PHP5 try following. 

AddType application/x-httpd-php5 .html .htm

OR

AddHandler application/x-httpd-php5 .html .htm

If nothing works, try one of the following.

RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
<FilesMatch "\.html$">
ForceType application/x-httpd-php
</FilesMatch>
AddHandler fcgid-script .html
FCGIWrapper /usr/local/cpanel/cgi-sys/php5 .html
Options +ExecCGI
 AddType application/x-httpd-php .php .html
 AddHandler x-httpd-php5 .php .html

Was this answer helpful? 0 Users Found This Useful (1 Votes)

Powered by WHMCompleteSolution