如何限制Apache仅接受来自localhost的特定网址请求?

时间:2016-08-17 12:53:42

标签: apache .htaccess httpd.conf

我只想批准本地主机向

发送请求

https://localhost:443/action/start.cgi

我知道我可以限制对目录的访问。

<Directory "/usr/local/httpd/htdocs">
  AllowOverride All
</Directory>

是否可以选择阻止localhost旁边的所有ips获取特定路径?

1 个答案:

答案 0 :(得分:2)

您必须将此规则添加到.htaccess。

order deny,allow
deny from all
allow from 127.0.0.1