This situation can arise when you try to .htaccess
override files processed by PHP. For example like this:
RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
This construct can only be used when PHP is running in mod mode_php. PHP runs in a different mode on our servers - fastcgi, so handlers need to be redefined differently.
For PHP to additionally process files with the extension .html
:
.html
and save your changes.
from 2-00 to 7-00