Forum Moderators: phranque
http://example.com/main?page=about.
Incidentally, they're all php files, but my hosting company apparently set it up to do something like "search for a folder with this name, keep going if not there, then search for a file with this name, return 404 if not found".
There's also a possibility that this is a default apache directive, but I am new to this so I'm not sure.
In conclusion, a) Will it hamper access of the site from certain users and b) Is there a special .htaccess trick I can use to stop those access problems? Or, should I scrap it all together and just make the url's four characters longer?
Alternatively you could, if it's a limited number of files put a line in the .htaccess file to force "main" to be interpreted as a php file.
------------------
Options +Includes
AddHandler server-parsed .htm
AddHandler server-parsed .html
ErrorDocument 404 [domain.co.uk...]
<FilesMatch "^main$">
ForceType application/x-httpd-php
</FilesMatch>
-------------------
May not work for you but should point in the right direction.