0

我有这个 htaccess 代码,它将整个站点重定向到其他站点。

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L] 

它重定向我的整个网站和主页。如何指定我不想重定向的页面?

非常感谢你!

4

1 回答 1

1

添加一些条件:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{REQUEST_URI} !^/$
RewriteCond %{REQUEST_URI} !^/index\.php$
RewriteCond %{REQUEST_URI} !^/foo.bar$
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L] 

等等

于 2013-08-19T15:39:31.800 回答