I have this url
http://mysite.com/profile?id=78
I wanted to changed it to be like this
http://mysite.com/78/
How would I do that?
I have this code in my htaccess, but it seems it’s not working.
RewriteRule ^id/([a-zA-Z0-9]+)/$ profile?id=$1
Kindly guide me on this one.
Your help would be greatly appreciated and rewarded.
Thanks!
I am pretty sure that you should use the
RewriteBasedirectiveThis will rewrite
http://mysite.com/u/john/tohttp://mysite.com/profile?name=john.Edit this is the new answer