据一些用户反应在安装phpwind或dede等一些程序时候会出现一些403错误,或者wordpress主题中有使用timthumb.php来实现缩略图而显示不了图片,类似于:

403 Forbidden
Access to this resource on the server is denied!
Powered By LiteSpeed Web Server
LiteSpeed Technologies is not responsible for administration and contents of this web site!

之所以会出现错误,是因为大多数的国外主机在配置 Apache 的时候启用了 mod_security ,也就是开启了安全检查,如果提交的信息中包含 select , % , bin 等关键字,Apache 就会禁止,并给出 403,404,500 等错误。下面就介绍一个解决方法:

找到.htaccess文件,在后面添加上如下内容即可,其实就是 disable mod_security

SecFilterEngine Off
SecFilterScanPOST Off

另外dedecms的可能还需要再加一条,以让默认访问的是index.html文件的
DirectoryIndex index.html