For some reason, .htaccess files have stopped working all of a sudden.

I checked apache2ctl -t -D DUMP_MODULES and rewrite_module is indeed loaded. However, putting random garbage in an .htaccess file is not causing any errors to show up in /var/log/apache2/error.log - so the file is not being read at all.

Where do I begin looking for potential causes?

I'm using Apache2 on Ubuntu 10.10 64-bit.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 4 down vote accepted

What is getting evaluated in .htaccess files is controlled by the AllowOverride Configuration directive.

You may check the Apache documentation here: Core - Apache HTTP Server

link|improve this answer
Wow... Totally my mistake - somehow that got added to the configuration file. Thanks! It works now! – George Edison Nov 10 '10 at 7:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.