Forum Moderators: phranque
However, on one box that uses mod_userdir, anytime that it rewrites the url, it seems to be coming out goofy. What should be converted from
http://localhost/~foo.com/admin/user/login
http://localhost/~foo.com/admin/index.php?page=user/login
http://localhost/C:/Websites/foo.com/trunk/public_html/admin/index.php?page=user/login
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [R,L,QSA]
so, is there some issue with mod_userdir and mod_rewrite, or did I just really jack something up?