Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

htaccess

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have in my httpd.conf file a VirtualHost like that:
<VirtualHost etc.etc.etc>
DocumentRoot /web/extra

<Location />
Options FollowSymLinks MultiViews Indexes ExecCGI
</Location>

DirectoryIndex index.html index.htm index.php index.cgi
</VirtualHost>
In /web/extra directory there are many subdirectories, each one containing a .htaccess file, but when I access these subdirectories, no authentication is done. I tried to put a Directory directive like:
<Directory /web/extra/user1>
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
where user1 is one of the subdirectories with its .htaccess file, but still doesn't work. Worst, it occurs an Internal Server Error.
What's wrong???
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top