hi Mate, I need help re writing my url. here is the original url: http://mysite.com/project/storefront/?p=payment I want it to make it so that visitors will be able to access the page via http://mysite.com/project/storefront/payment How can i do this using .htaccess Thank you
You can try with the following .htaccess rules: RewriteCond %{QUERY_STRING} (^|&)p=payment($|&) RewriteRule ^project/storefront/$ /project/storefront/payment?&%{QUERY_STRING} Code (markup):