Hello All -
In a previous project I kept all back-end files/functionality within a separate directory inside the root directory. So, if someone typed www.sitename.com/private/ they would be served the index.php file within the private directory. No problem.
Now I'm experimenting with the possibility of getting rid of the "private" directory - and all sub directories with it - so that when someone enters www.sitename.com/private/ only the index.php file within the ROOT directory will be called - index.php in the ROOT directory will now handle all "private" requests.
Anyway, I've tried the following in my .htaccess file (on my local dev environment):
Redirect /private/ index.php
but I keep getting server error 500 messages.
Anyone have an idea on how I can get this to work?