当前位置:首页 > CMS教程 > PHPWind > 列表

解决phpwind安装出现403Forbidden问题

发布:smiling 来源: PHP粉丝网  添加日期:2014-04-10 17:02:13 浏览: 评论:0 

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!

导致HawkHost空间出现 403 Forbidden 错误原因:共享服务器上安装了MOD,全称Mod security,当网址包含有“%”号等其它敏感字符时,就会被 Mod security 阻止.

解决方案是从我的服务器供应商那边得到的,在.htaccess文件里添加如下代码:

SecFilterEngine Off

SecFilterScanPOST Off

若找不到文件,新建并复制以下内容,上传即可:

  1. # -FrontPage- 
  2.  
  3. IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* 
  4.  
  5. <Limit GET POST> 
  6. #The next line modified by DenyIP 
  7. order allow,deny 
  8. #The next line modified by DenyIP 
  9. #deny from all 
  10. allow from all 
  11. </Limit> 
  12. <Limit PUT DELETE> 
  13. order deny,allow 
  14. deny from all 
  15. </Limit> 
  16. AuthName phpfensi.com 
  17. AuthUserFile /home/jiesecom/public_html/_vti_pvt/service.pwd 
  18. AuthGroupFile /home/jiesecom/public_html/_vti_pvt/service.grp 
  19.  
  20. <Files 403.shtml> 
  21. order allow,deny 
  22. allow from all 
  23. </Files> 
  24.  
  25. deny from 89.248.168.40 
  26. deny from 91.205.173.51 
  27. SecFilterEngine Off 
  28. SecFilterScanPOST Off 

Tags: phpwind 403Forbidden

分享到: