Forum Moderators: phranque
I know this may be a bit unusual but I know you can use the .htaccess file to have .html files work as .shtml files. Can you do the same except make .html files prase as .asp files. If so what do I need to place in my .htaccess file?
Thanks for the help
Welcome to WebmasterWorld [webmasterworld.com]!
I believe what you want is the Action [httpd.apache.org] directive of mod_actions, or the AddHandler [httpd.apache.org] directive of mod_mime.
Jim
You could set some MIME TYPE's with this in your .htaccess file.
AddType application/x-httpd-php .html
That is what I use for .html files to be parsed by the php server.