Hello All -
Made a similar post a few weeks ago and got a clue from one member but after much study still can't get it working correctly (atleast I'm not getting 500 errors anymore!).
All that I'm trying to do is this:
Address bar reads: www.site.com/private/
The /private/ directory doesn't exist so I just want to make sure that when www.site.com/private/ is requested www.site.com/index.php is actually served.
I've got the following in my htaccess file on my local dev environment:
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteRule ^private/$ index.php
But when I test it, I always get: The requested URL /testing/dev/index.php was not found on this server.
I guess it's some kind of regexp syntax problem relating to ^private/$ but I can't track it down. Can anyone help?
Neophyte