<-
Apache > HTTP 服务器 > 文档 > 版本 2.4 > 模块

Apache 模块 mod_allowmethods

可用语言:  en  |  fr 

描述轻松限制服务器上可以使用哪些 HTTP 方法
状态实验性
模块标识符allowmethods_module
源文件mod_allowmethods.c
兼容性在 Apache 2.3 及更高版本中可用

摘要

此模块简化了限制服务器上可以使用哪些 HTTP 方法的操作。最常见的配置将是

<Location "/">
   AllowMethods GET POST OPTIONS
</Location>
Support Apache!

指令

错误修复清单

另请参阅

top

AllowMethods 指令

描述限制对列出的 HTTP 方法的访问
语法AllowMethods reset|HTTP-method [HTTP-method]...
默认值AllowMethods reset
上下文目录
状态实验性
模块mod_allowmethods

HTTP 方法区分大小写,通常按照 RFC 的规定以大写形式给出。GET 和 HEAD 方法被视为等效。reset 关键字可用于在更深层的嵌套上下文中关闭 mod_allowmethods

<Location "/svn">
   AllowMethods reset
</Location>

注意

此模块无法拒绝 TRACE 方法;请改用 TraceEnable

mod_allowmethods 是为了取代 LimitLimitExcept 的笨拙实现而编写的。

可用语言:  en  |  fr 

top

评论

通知
这不是问答部分。此处发布的评论应针对改进文档或服务器的建议,如果这些建议已实施或被认为无效/不相关,则可能会被我们的版主删除。有关如何管理 Apache HTTP 服务器的问题应发送到我们的 IRC 频道 #httpd(在 Libera.chat 上)或发送到我们的 邮件列表