I've been hiding the extension of my php files using the following setup in my .htaccess
<Files
FILENAME>
ForceType application/x-httpd-php
</Files>
I don't allow outsiders to view some of these files using a Restrict() function which just redirects using header("location: Restricted.html"); if a cookie is not found... this works for the files like
www.mywebsite.com/Example but the reason i did this was to hide variables in the urls like
www.mywebsite.com/Example/539 ...when there is an ending like the above I get a message saying the
Redirection Limit For this URL exceeded. It works without the hidden variable. So I'm wondering what can be done about this problem
Thanks,
dododododododdodododod
