将带有问号的URL重定向301到新URL

时间:2014-09-01 17:31:28

标签: apache .htaccess mod-rewrite redirect seo

旧网址: 的 example.com?archive&id=1133352540&start_from&subaction=showfull&ucat=2

我想将其重定向到: 的 example.com/blog/post /

我在.htaccess中尝试了各种条件,似乎没什么用。

1 个答案:

答案 0 :(得分:0)

您可以使用此规则:

RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} ^archive&id=1133352540&start_from&subaction=showfull&ucat=2$ [NC]
RewriteRule ^ blog/post? [L,R=301]