Google搜索结果显示错误403

时间:2015-02-26 06:04:28

标签: html apache .htaccess http-status-code-403

当我在Google搜索中搜索我的网站并点击链接时,Google会显示错误

  

" 403。那是一个错误。您的客户无权获取URL   /间?来自此服务器的url = http://www.domain.com/。   这就是我们所知道的。"

这里我的.htaccess文件代码:

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName meezaneadel.com
AuthUserFile /home/meezane/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/meezane/public_html/_vti_pvt/service.grp

1 个答案:

答案 0 :(得分:0)

除非您的服务器配置了为这些请求提供服务的脚本,否则PUTDELETE部分是不必要的。 GETPOST部分也是不必要的,因为您基本上不想阻止对任何人的访问。

因此,只需删除这两部分,然后再次尝试访问您的网站。