So i have this .htaccess file...
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*/[^\./]*[^/])$ $1/
RewriteRule ^(.*)$ wakka.php?wakka=$1 [QSA,L]
</IfModule>
Options All
... and when i access the folder i get the following in the error log...
File does not exist: /usr/local/apache/htdocs/home/tspilman/public_html/wiki/wakka.php
The wakka.php does exist and works, but i'm a total n00b at this mod rewrite stuff so i'm not sure what the problem is. Maybe i need to do something special on this virtual server?
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.*/[^\./]*[^/])$ $1/
RewriteRule ^(.*)$ wakka.php?wakka=$1 [QSA,L]
</IfModule>
Options All
... and when i access the folder i get the following in the error log...
File does not exist: /usr/local/apache/htdocs/home/tspilman/public_html/wiki/wakka.php
The wakka.php does exist and works, but i'm a total n00b at this mod rewrite stuff so i'm not sure what the problem is. Maybe i need to do something special on this virtual server?
Comment