如何使用 Lighttpd 限制对某些路径的访问?
我想将对我的 /admin
URL 的访问限制为仅内部 IP 地址。 开放互联网上的任何人都不应该能够登录我的网站。 由于我使用 Lighttpd,我的第一个想法是使用 mod_rewrite
将 /admin
URL 的任何外部请求重定向回我的主页,但我了解不多关于 Lighty 和文档没有太多关于检测 192.168.0.0 IP 范围的信息。
I would like to restrict access to my /admin
URL to internal IP addresses only. Anyone on the open Internet should not be able to login to my web site. Since I'm using Lighttpd my first thought was to use mod_rewrite
to redirect any outside request for the /admin
URL back to my home page, but I don't know much about Lighty and the docs don't say much about detecting a 192.168.0.0 IP range.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
docs 中的示例:
Try this:
Example from the docs:
这对我有用:
!=
比==
更有效。This worked for me:
!=
worked over==
.