htaccess使用url中的查询字符串进行永久重定向

时间:2014-03-12 14:06:49

标签: regex apache .htaccess mod-rewrite

如何重定向此页面: example.com/index.php?option=1&view=news 对此 /消息

我打算简单

Redirect /index.php?option=1&view=news /news

但它不起作用

1 个答案:

答案 0 :(得分:1)

您需要使用mod_rewrite来匹配查询字符串:

RewriteEngine On

RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC]
RewriteRule ^ /news? [R=301,L]