Reputation:
I have and URL which is
homepage/profile.php?id=15&username=dinesh.kumar
now i would like to generate URL something like this...
homepage/dinesh.kumar
want permanent redirection. Can some one help me please...it may be very simple but my knowledge on this is zero.
Thank you in advance..
Upvotes: 2
Views: 1474
Reputation: 9391
This is possible using mod_rewrite
Your rule will look something like:
RewriteRule /homepage/(.*)/(.*)$ /homepage/profile.php?id=$1&username=$2
Upvotes: 1