从重写规则中排除IP

时间:2013-02-27 04:46:30

标签: apache .htaccess

我有重定向到维护页面的重写规则

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/wh_client1/index.html
RewriteRule ^ /wh_client1/index.html [R=301]

它工作正常,但我想排除一个不应用上述规则的IP

可能吗?

1 个答案:

答案 0 :(得分:3)

我相信你正在寻找这样一个条款:

RewriteCond %{REMOTE_ADDR} !^11\.22\.33\.44$ [NC]

显然用您的IP替换11.22.33.44