简单重定向在URL中附加REQUEST_URI

时间:2016-11-22 09:15:36

标签: .htaccess isapi-redirect

如果REQUEST_URI包含/register/affiliate/32

,我正在尝试重定向
RewriteCond %{REQUEST_URI} /register/affiliate/32
RewriteRule (.*)  https://affiliate.example.com [R=301,L]

它工作正常,但它还包括重定向网址中的REQUEST_URI如何阻止它,重定向的URL中不包含URI?

1 个答案:

答案 0 :(得分:0)

尝试这样,

RewriteCond %{REQUEST_URI} ^/register/affiliate/32
RewriteRule ^(.*)$  https://affiliate.example.com [R=301,L]