Thread: .htm extension
View Single Post
  #2 (permalink)  
Old 07-19-2007, 10:33 AM
speed speed is offline
WebProWorld Veteran
 
Join Date: Aug 2003
Location: Cornwall, UK
Posts: 972
speed RepRank 1
Default Re: .htm extension

The normal default configuration for web servers is that only files ending in .php will be passed to PHP for processing.

You can try adding the following to your .htaccess file to cause .htm and .html files to be treated as PHP:
Code:
AddType application/x-httpd-php .htm .html
Reply With Quote