Hi all
I am looking into implementing my first 'Tidy URL's Site' and one of the methods is the Apache ForceType implementation which uses the following code in the .htacess file:
<files page>
ForceType application/x-httpd-php
</files>
My question is this, as the above will only work for a document called "page" in my web folder, is there a way of editing the above code to include all my files, or even a way of specifying the names in the same bit of code above?
Or do i have to have the code repeated x number of times in my htaccess file for each page in my web folder like such:
<files page>
ForceType application/x-httpd-php
</files>
<files anotherpage>
ForceType application/x-httpd-php
</files>
<files page3>
ForceType application/x-httpd-php
</files>
etc etc...
Thanks in advace
K