这是我的 htaccess:
## Rewrites
<IfModule mod_rewrite.c>
RewriteEngine On
Redirect /stream/ http://twitch.tv/8wayrun
Redirect /stream http://twitch.tv/8wayrun
RewriteCond %{HTTP_HOST} ^(www\.)?8wayrun\.com$
RewriteRule ^(.*)$ http://8wayrun.com/calibur/$1 [R=302,L]
</IfModule>
基本上,我需要将 8wayrun.com/stream 重写为 twitch.tv/8wayrun ...
然后我需要它将 8wayrun.com 重写为 8wayrun.com/calibur ...
问题是,它将 8wayrun.com/stream 重写为 8wayrun.com/calibur/stream。我该如何解决?