首页 > 代码库 > 在Apache服务器中禁用option

在Apache服务器中禁用option

在apache禁止 http OPTIONS方法. apache disable http OPTIONS method

技术分享 分类:
 

 

[html] view plain copy
 
  1. <Location />  
  2.     <Limit OPTIONS>  
  3.         Deny from all  
  4.     </Limit>  
  5. </Location>  

或者用rewrite

RewriteCond %{REQUEST_METHOD} ^(OPTIONS)
RewriteRule .* - [F]

在Apache服务器中禁用option