如何限制 Apache 中单个文件通过 HTTPS 访问 POST 请求?
我使用以下代码将位于 /var/www/sample
中的文件 service.php
的访问限制为 HTTPS:
<Directory /var/www/sample>
<Files service.php>
SSLRequireSSL
</Files>
</Directory>
I have limited access to a file service.php
located in /var/www/sample
to HTTPS with following code:
<Directory /var/www/sample>
<Files service.php>
SSLRequireSSL
</Files>
</Directory>
Now, I would like to limit the access only for POST requests. There is a <Limit>
directive that should do this but how should I combine it with the above configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 mod_rewrite 并添加以下代码:
you could use mod_rewrite and add this code: