0

我们从论坛提供商转移到我们自己的论坛和托管。旧论坛使用 index.cgi?action= 有时是 index.cgi?action=viewprofile&user=USERNAME 等....

我想将任何 index.cgi?action= 请求重定向到http://www.example.com/或 index.php

我也想重定向:speller/spellchecker.html 到http://www.example.com/或 index.php

所有重定向,我想成为 301。

任何人都可以帮忙吗?

谢谢

4

1 回答 1

2

我希望这对你有用:

RewriteEngine on
RewriteBase /

RewriteCond %{QUERY_STRING} action
RewriteRule index\.cgi http://www.example.com [L,R=301]

RewriteRule speller/spellchecker.html http://www.example.com [L,R=301]

每个对 index.cgi 的请求action都将被重定向,每个对 speller/spellchecker.html 的请求也将被重定向。

于 2012-06-09T14:15:08.383 回答