我的目标只是重定向:
/jsn.php?parametershttp://www.site2.com/jsn.php?parameters
我尝试过

Redirect permanent /jsn.php(.)* http://www.site2.com/jsn.php$1

最佳答案

查询字符串参数是自动传递的,您只需要这样做:

Redirect permanent /jsn.php http://www.site2.com/jsn.php
(.)*Redirect指令不兼容,您可能想到了RedirectMatch,但是无论哪种方式,您都不需要它。并且(.)*也应该是(.*),否则 $ 1 向后引用只会得到第一个字符。

10-02 08:54