欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Apache访问出现501 Method Not Implemented错误解决

程序员文章站 2023-11-03 21:51:58
今天网站在打开时发现提示 501 method not implemented to /index.html not supported.了,我用的是apache环境了,下...

今天网站在打开时发现提示 501 method not implemented to /index.html not supported.了,我用的是apache环境了,下面我来给大家介绍解决办法。

有的朋友说

服务器加载security_module 模块导致。
如果服务器端解决可以
将/etc/conf.d/mod_security.conf 中的

loadfile /usr/libxml2.so.2
loadmodule security_module modules/mod_security2.so
loadmodule unique_id_module modules/mod_unique_id.so

注释掉,就可以了。

或者可以在
.htaccess里加上以下内容

<ifmodule mod_security.c>
secfilterengine off
secfilterscanpost off
</ifmodule>

将其关闭。

国外网站找到一解决办法。

$ telnet www.example.com 80
trying 192.0.32.10...
connected to www.example.com.
escape character is '^]'.
options / http/1.1

http/1.1 200 ok
date: tue, 08 dec 2009 02:29:38 gmt
server: apache/2.2.3 (centos)
allow: get,head,post,options,trace
content-type: text/html; charset=utf-8
content-length: 0
connection: close

connection closed by foreign host.
$