0
我想只批准到本地主機發送請求到如何限制Apache只接受來自本地主機的特定url請求?
https://localhost:443/action/start.cgi
我知道我可以限制訪問的目錄。
<Directory "/usr/local/httpd/htdocs">
AllowOverride All
</Directory>
有沒有一個選項來阻止所有ips旁邊的特定路徑localhost?
針對Apache 2.4 [這個答案是很值得一讀(http://stackoverflow.com/a/10078317/3536236) – Martin
有沒有讓這個僅在「HTTPS影響的選項://本地主機:443/action/start.cgi「? – 15412s
127.0.0.1是您的本地主機 – error2007s