301 Redirect to static html from a single parameter php page
I would like to change my page i.e. oldpa开发者_运维知识库ge.php?id=11 to http://www.example.com/newpage.html.
Can any one please help. Thank you..
If you have mod_rewrite installed / enabled then this should work:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^id=11$ [NC]
RewriteRule ^oldpage\.php$ http://www.example.com/newpage.html? [L,R=301]
精彩评论