原谅琐碎的问题,但我不明白如何正确使用IP地址拒绝访问我的网站。假设我有网站www.mywebsite.com。假设我的办公室机器有以下3个IP地址:
ipv4: 192.1.2.3
default gateway: 192.1.2.345
and the global ip for my network: 456.34.56.78 (retrieved using www.globalip.com)
现在我想授予我网络中任何用户的访问权限,因此我认为正确使用的号码是我办公室所有机器通用的全局IP 456.34.56.78:
我使用以下代码:
# redirect all visitors to alternate site but retain full access for you
ErrorDocument 403 http://www.bbc.com
Order deny,allow
Deny from all
Allow from 456.34.56.78
但它不起作用。它重定向我的网络中的所有机器以及外部机器。 我做错了什么?谢谢你的帮助