RewriteRule ^massaggi-([^/]*)$ /an.php?prov=$1 [L] Code (markup): with a code like this I can see the links like this created website.com/massaggi-city But I can see that I can still access pages like website.com/an.php?prov=city I want to this (website.com/an.php?prov=city) to redirect to (website.com/massaggi-city) Any help highly appreciated.
This should do the trick, I haven't tested it though: RewriteRule ^an.php?prov=([^/]*)$ /massaggi-$1 [R=301,L] Code (markup): Along side your rule.