This is a discussion on What do these errors mean? within the Apache Web Server forums, part of the Web Server and Related Forums category; Hi, I have a .htaccess file on my local XAMPP server directory. The contents of the file are : RewriteEngine on ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I have a .htaccess file on my local XAMPP server directory. The contents of the file are : RewriteEngine on RewriteLog logs/rewrite.log RewriteLogLevel 5 Options +FollowSymLinks RewriteRule ^([0-9]+)$ test.html I've restarted apache with mod_rewrite enabled and phpinfo shows that it's enabled. The contents of my httpd.conf are : <Directory /> Options FollowSymLinks AllowOverride None RewriteEngine On Order deny,allow Deny from all </Directory> <Directory "D:/Program Files/xampp/htdocs/lmw"> Options FollowSymLinks AllowOverride FileInfo Options RewriteEngine On </Directory> Now for some reason, i'm getting errors from apache when I try to access a page like, http://localhost/lmw/1.html. The error in error.log is : [Wed Aug 09 22:47:29 2006] [error] [client 0.0.0.0] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: D:/Program Files/xampp/apache/error/HTTP_NOT_FOUND.html.var What does this error mean? Shouldn't the config in my httpd.conf have enabled FollowSymLinks? Any help would be most appreciated since i'm a mod_rewrite newbie. Thanks, Gaurav |