seo - .htaccess make friendly url's -


i have website www.example.com/index.php?q=registration redirect www.example.com/registration

this code doesn't seems work, don't know why.

rewriteengine on rewriterule ^([^/]*)\.html$ /index.php?q=$1 [l] 

can me?

try this

rewriteengine on rewriterule ^(.*)$ index.php?q=$1 [l,qsa] rewriterule ^([^/]*)(.*)$ /$1[l,qsa] 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -