Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
#to change extension but still be processed by PHP
2
#example: shoutbox.gs or shoutbox.sb or shoutbox.btw
3
 
4
<FilesMatch "\.(gs|sb|btw)$"> 
5
 ForceType application/x-httpd-php
6
</FilesMatch>
7
 
8
#####################################
9
 
10
#without extension but still be processed by PHP
11
#example: shoutbox
12
 
13
<Files shoutbox>
14
 ForceType application/x-httpd-php
15
</Files>