I am trying to do a 301 but it does not work with these pages. file name: index.html?pg=0&mid=173 want to re-direct this to a normal html page. anyone know how to do this.
I have some idea how did you manage to create parametric URI with a html file, though this is very strange. Anyway, I think you should use this rewrite code RewriteCond %{query_string} ^pg=0&mid=173 $ RewriteRule ^(.*)$ http://www.yoursite.com/normal.html$1 [L,R=301] Code (markup):