我只想批准本地主机向
发送请求 https://localhost:443/action/start.cgi
我知道我可以限制对目录的访问。
<Directory "/usr/local/httpd/htdocs">
AllowOverride All
</Directory>
是否可以选择阻止localhost旁边的所有ips获取特定路径?
答案 0 :(得分:2)
您必须将此规则添加到.htaccess。
order deny,allow
deny from all
allow from 127.0.0.1