tags:

views:

35

answers:

1
+1  Q: 

IIS 6.0 .htaccess

You can 'fake it' .php being a .html file using .htaccess:

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

how can i do this in using IIS 6.0?

+2  A: 

If you have access to the IIS Manager:

Website Properties > Home Directory (Tab) > Configuration (Button) > Mappings (Tab)

You should be able to assign what application/dll handles certain file extensions.

Scuzzy