Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有重定向到维护页面的重写规则
RewriteEngine On RewriteCond %{REQUEST_URI} !^/wh_client1/index.html RewriteRule ^ /wh_client1/index.html [R=301]
它工作正常,但我想排除一个不应适用上述规则的 IP
可能吗?
为了从访问页面中排除 IP,假设您使用的是 apache,您可以使用如下子句:
RewriteCond %{REMOTE_ADDR} !^11\.22\.33\.44$ [NC]
在这个答案中,11.22.33.44是一个例子。将其替换为您的实际 IP 地址。
11.22.33.44