允许多个 IP 通过 .htaccess 访问 WordPress 站点管理

发布于 2024-12-22 14:14:43 字数 454 浏览 1 评论 0原文

我目前有一个正在升级的 WordPress 网站,并且在 .htaccess 文件中有一个维护重定向设置。

我可以允许我自己的 IP 访问站点和管理员,但如何允许其他编辑者也可以访问多个 IP 访问。

我目前正在使用:

     
     RewriteEngine on
     RewriteCond %{REMOTE_HOST} !^123.456.789.101
     #RewriteCond %{REMOTE_ADDR} !^123.456.789.101
     RewriteCond %{REQUEST_URI} !/maintanence.html$ [NC]
     RewriteCond %{REQUEST_URI} !.(jpe?g?|png|gif) [NC]
     RewriteRule .* /maintanence.html [R=302,L]
    
    

I currently have a wordpress site that is being upgraded and I have a maintenence redirect setup in the .htaccess file.

I can allow my own IP access the site and admin but how can I allow multiple IPs access for the other editors to also have access.

I'm currently using :

     
     RewriteEngine on
     RewriteCond %{REMOTE_HOST} !^123.456.789.101
     #RewriteCond %{REMOTE_ADDR} !^123.456.789.101
     RewriteCond %{REQUEST_URI} !/maintanence.html$ [NC]
     RewriteCond %{REQUEST_URI} !.(jpe?g?|png|gif) [NC]
     RewriteRule .* /maintanence.html [R=302,L]
    
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百思不得你姐 2024-12-29 14:14:43

答案可能有点晚了,但是:

 RewriteCond %{REMOTE_HOST} !(123\.456\.789\.101|123\.456\.789\.102|123\.456\.789\.103)

效果很好。

The answer might be a bit late but:

 RewriteCond %{REMOTE_HOST} !(123\.456\.789\.101|123\.456\.789\.102|123\.456\.789\.103)

works well.

〃安静 2024-12-29 14:14:43

好吧,您想要 IP 而不是主机,所以请务必这样做。然后使用您想要的逻辑将它们链接在一起:

RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.2$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.3$
RewriteRule .* /maintenance.html [R=302,L]

Well you wanted IPs not hosts, so make sure to do that. Then chain them together using your intended logic:

RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.2$
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.3$
RewriteRule .* /maintenance.html [R=302,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文