奇怪的 htaccess 文件

奇怪的 htaccess 文件

我正在客户的网站上工作,我发现了这个 htaccess 文件。

# -FrontPage-

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

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit POST PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName [cut]
AuthUserFile  /web/u354/www70620/www/_vti_pvt/service.pwd
AuthGroupFile /web/u354/www70620/www/_vti_pvt/service.grp  

有人能解释一下发生了什么事吗?

那么,在第一个限制中,他们允许所有帖子,但在第二个限制中他们拒绝它?

底部的 Auth 内容是怎么回事?我知道它处理基本的 Web 身份验证,但该网站不需要登录即可查看它。

答案1

这是 microsoft frontpage apache 模块放入的内容。您可以安全地将其删除。

相关内容