我正在尝试将网络目录限制为一个IP地址。任何其他地址都将路由到/updating.html
这是我的.htaccess配置
# ALLOW USER BY IP
<Limit GET POST>
Require all denied
Require ip xxx.xxx.xxx
</Limit>
ErrorDocument 403 /updating.html
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
现在它将每个人都路由到/updating.html,即使是我已经输入了需要IP的IP。
我已经用Google搜索了我的IP并将其放入。即使检查它是否正确,以及是否有任何代理打开。我在该目录中安装了wordpress,但我一直被定向到/更新。