我想将任何请求从一个域重定向到另一个域,但不请求新域上的页面或传递参数。我得到的最接近的结果是:
RedirectMatch 永久 ^(.*)$http://www.example.com
但是这会传递参数(例如?param = one),这很混乱。
答案1
来自文档:
... when you want to erase an existing query string, end the substitution
string with just a question mark.
所以,我想这应该可行:
RedirectMatch permanent ^(.*)$ http://www.example.com/?