如何使用htaccess

时间:2017-02-08 01:10:14

标签: .htaccess redirect query-string

我想重定向

http://myoldsite.com/page?query=some+arguments&some_more

'http://mynewsite.com/?notfound=' + urlencode('page?query=some+arguments&some_more')

单独使用htaccess可以实现吗?

1 个答案:

答案 0 :(得分:1)

您可以结合使用B and NE flags转义反向引用:

RewriteEngine On

RewriteCond %{QUERY_STRING} .+
RewriteRule ^page/?$ /?notfound=$0\%3f%0 [L,NC,R=302,B,NE]