我的.htaccess文件是什么意思?

我的.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 eigos.co.nz AuthUserFile /home/bob/public_html/_vti_pvt/service.pwd AuthGroupFile /home/bob/public_html/_vti_pvt/service.grp 

有人能告诉我这是什么吗?

当你在寻找关于apache问题的文档时,最好的办法是在google中input“apache $ {command}”,即“apache IndexIgnore”。 第一个结果通常是apache文档。 如果你正在做任何Apacheconfiguration,你需要使用文档。 (这是相当不错的)

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

显示自动生成的索引时,将文件隐藏在以下掩码中。

文档:AutoIndex模块,IndexIgnore

 <Limit GET POST> order deny,allow deny from all allow from all </Limit> 

获取和发布请求允许所有stream量。 在命令拒绝的情况下,允许服务器首先应用拒绝指令(全部拒绝),然后在任何拒绝之上应用允许指令(允许所有)。

文档:限制,订单

 <Limit PUT DELETE> order deny,allow deny from all </Limit> 

对于放入和删除请求拒绝访问所有地址(…)

 AuthName eigos.co.nz 

这有效地设置浏览器显示的用户名/密码提示的标题。 除此之外,我不知道有什么影响。

文档:AuthName

 AuthUserFile /home/bob/public_html/_vti_pvt/service.pwd 

包含用户名和密码散列的文件。

文档:AuthUserFile

 AuthGroupFile /home/bob/public_html/_vti_pvt/service.grp 

用户组列表

文档:AuthGroupFile