我有这个设置:
这是我需要满足的规则:
- 如果http://www.example.com/test不存在,重定向到http://www2.example.com/test
- 如果您访问http://www.example.com或http://www.example.com/,请不要重定向(index.html 存在)
- 如果您访问http://www.example.com/special重定向到http://bing.com
- 如果您访问http://www.example.com/special2重定向到http://google.com
这是我到目前为止所拥有的:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteEngine on
Redirect 301 /special http://bing.com
Redirect 301 /special2 http://google.com
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://www2.example.org/$1 [L,R=301]
</IfModule>
问题是,当我访问http://www.example.com时,它会将我重定向到http://www2.example.com。