301从单个参数php页面重定向到静态html

时间:2011-01-31 10:13:00

标签: .htaccess

我想将我的网页 oldpage.php?id = 11 更改为 http://www.example.com/newpage.html

任何人都可以帮忙。谢谢..

1 个答案:

答案 0 :(得分:1)

如果您安装/启用了mod_rewrite,那么这应该有效:

RewriteEngine On
RewriteCond %{QUERY_STRING} ^id=11$ [NC]
RewriteRule ^oldpage\.php$ http://www.example.com/newpage.html? [L,R=301]