Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> 網站501 Method Not Implemented錯誤提示

網站501 Method Not Implemented錯誤提示

日期:2017/2/8 10:13:11      編輯:關於服務器

有的朋友說

服務器加載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.
$

Copyright © Windows教程網 All Rights Reserved