I have a protected folder in my server.
/var/www/private/
/var/www/private/.htaccess
It also has a lot of subfolders with different services.
/var/www/private/service1/
/var/www/private/service2/
/var/www/private/service3/
Now, i'd like to shorten the url of some services. I'd like to use symbolic links.
/var/www/service1 -> private/service1
Now the tests:
http://localhost/private/service1 <-- Asks for password, like i want.
http://localhost/service1 <-- Doesn't ask for password!!
Is this a general limitation of symbolic links or a misconfiguration issue? Tried on Fedora and Ubuntu with quite standard configs (i can post them at request).