在apache禁止 http OPTIONS方法. apache disable http OPTIONS method
2013-04-17 09:27 4050人阅读 评论(1) 收藏 举报
分类:
网络安全 WEB(4)
版权声明:本文为博主原创文章,未经博主允许不得转载。
[html] view plain copy
- <Location />
- <Limit OPTIONS>
- Deny from all
- </Limit>
- </Location>
或者用rewrite
RewriteCond %{REQUEST_METHOD} ^(OPTIONS)
RewriteRule .* - [F]
时间: 2024-10-12 20:05:53