.htacces

frankvdberg

Registered
Does anybody know why my htaccess file is not working on my apache webserver (on Jaguar)... I've tryed to make some error docs... but it skips the htaccess file
 
The definition for the directory in htttpd.conf also needs to have a directive AllowOverride defined. For example, my wiki server has the following directive in httpd.conf:


<Directory "/htdocs/wiki/bin">
Options +ExecCGI
AllowOverride All
SetHandler cgi-script
Allow from all
</Directory>


This allows .htaccess in /htdocs/wiki/bin to control access to the various scripts in that directory.

It was a lesson learnt the hard way.. :)
 
Back
Top