Forum Moderators: phranque
I have a .htaccess in my document root, but it does not get parsed/loaded. I've tried with real syntax that I know should work (mod_rewrite code). I also tried putting random gibberish in there,(apache should make some error report due to that, righto?)
Any ideas what it might be? And what kind of information do you need?
Jim
My .htaccess looks like this atm:
RewriteEngine On
RewriteRule registrering$ /user.php?action=add The only relevant parts I could find in my apache2.conf is:
AccessFileName .htaccess My vhost file, (sites-enabled/sitename), looks kind of like this:
DocumentRoot /var/www
<Directory />
Options FollowSymlinks
AllowOverride All
</Directory><Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow, deny
allow from all
</Directory>