Dreamcatcher -
Use your "file manager" option in Ensim to access your .htaccess file - you can even edit it through this option.
This is what you want to use in your .htaccess file to change URLs addressed to a htm file to access a php extension file instead:
Code:
RewriteEngine On
RewriteRule ^(.+)\.htm$ $1.php [L]
I take no credit - had to ask the brains at sitepoint for that - thanks to pippo for the code.
