tags:

views:

20

answers:

2

Suppose I wanted to have all files named ".myexcellentpage" to be parsed with PHP, or with Perl, or as HTML, or what have you. What do I have to do in htaccess to achieve this?

+1  A: 

For PHP, the following AddType should work:

AddType application/x-httpd-php .myexcellentpage

(You can specify php4 or php5 explicitly if desired.)

For other things, like Perl CGI, the AddHandler directive can be used to specify the handler.

Amber
+1  A: 
AddType application/x-httpd-php5 .mybogusextension    
AddHandler cgi-script .myotherextension
Jonathan Feinberg