.htaccess help
Posted: Mon Jul 11, 2011 10:32 am
I'm using a .htaccess to rewrite paths to make my urls look cleaner. And for the users it will be /members/username but my thing is members.php?uid=username
For the file I'm using:
But i get redirected to my 404 error page. How would I do this?
For the file I'm using:
Code: Select all
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule members/$1 members.php?uid=$1