07-09-2008, 02:09 AM
|
#7 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
You might not have rights to change Options in your .htaccess. Confirm with your sysadmin that 'AllowOverride Options' is set for your virtual host. Then try removing everything from your .htaccess but the following (same as Kalle said, minus any rules):
Code:
Options +FollowSymLinks
RewriteEngine On
If you have that in your .htaccess and you get an internal server error, then mod_rewrite isn't properly enabled in Apache. Your sysadmin needs to uncomment the following line and reboot the server:
Code:
#LoadModule rewrite_module modules/mod_rewrite.so
|
|
|
|