如何使用htaccess URL重定向(301)百分比?

时间:2015-02-07 04:35:47

标签: .htaccess

我有很多网址需要重定向。示例:

/index.php?act=viewtag&tag=%EB%F8%E9%F1_%E0%E5%E5%F0%F1>>到>>另一个网址

/index.php?act=viewtag&tag=%F9%F8%E4_%EE%E9%F9%EC_%E2%EC%F8>>到>>另一个网址

每个重定向应该是另一个URL。我的意思是第一个exmaple的目的地和第二个exmaple不是同一个页面..并且很多重定向与很多不同的URL。

1 个答案:

答案 0 :(得分:0)

你需要使用mod_rewrite和%{QUERY_STRING}变量:

RewriteEngine On

RewriteCond %{QUERY_STRING} ^act=viewtag&tag=%EB%F8%E9%F1_%E0%E5%E5%F0%F1$
RewriteRule ^(index\.php)?$ /another-url? [L,R]

RewriteCond %{QUERY_STRING} ^act=viewtag&tag=%F9%F8%E4_%EE%E9%F9%EC_%E2%EC%F8$
RewriteRule ^(index\.php)?$ /another-url? [L,R]