For some reasons i don't understand, this .htaccess code is not working to my satisfaction. Someone please help me check and tell me whats wrong.
It directs fine but after that i still see url the way i don't want it to.
Thanks in advance.
Code:
<IfModule mod_rewrite.c> RewriteEngine On # Turn on the rewriting engine RewriteBase / #DO NOT EDIT THIS IF YOU ARE A NEWBIE!!!!!!!!!!!!! RewriteRule ^register/([^-]+)$ http://site.net/Admin/register.php?catch=$1 [NC,L] # Handle requests for "REGISTER" RewriteRule ^verify/([^-]+)/([^&]+)$ http://site.net/Admin/verifyAccount.php?catch=verify&un=$1&vcode=$2 [NC,L] # Handle requests for "VERIFICATION" RewriteRule ^verify/$ http://site.net/Admin/verifyAccount.php?catch=verify&un=&vcode= [NC,L] RewriteRule ^cats/$ http://site.net/Admin/index.php [NC,L] </IfModule>
It directs fine but after that i still see url the way i don't want it to.
Thanks in advance.
Comment