#66: Get Apache to recognize .htaccess files
Solved!
By default, Apache doesn't pay attention to .htaccess files.
Modify /etc/apache2.conf
- spigoat on October 02, 2009, 08:10 PM UTC
Add the following to apache2.conf and restart the webserver.
<directory my_web_directory>
AllowOverride All
</directory>
<directory my_web_directory>
AllowOverride All
</directory>