Hi, I want to redirect from www.mydomain.com/page.php?id=10 to www.mydomain.com/10 Can someone help in doing this through .htaccess? Thanks, Sumit Kumar
RewriteRule ^/(.*)$ page.php?id=10 [R=301,L] Code (markup): The above will only do the one, page... RewriteRule ^/(.*)$ page.php?id=$1 [R=301,L] Code (markup): and that one should do all .... IE page.php?id=1 , page.php?id=2 so on and so forth