实施例。我通过浏览器打开http://www.delfi.lt,我可以以某种方式访问/打开/下载此网站的.htaccess文件吗?
我读到.htaccess对于任何浏览器都是可见的,如果它没有被apache隐藏的话。 apache默认是否阻止访问.htaccess文件?
答案 0 :(得分:2)
Apache配置禁用对.htaccess的访问,类似于httpd.conf
:
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>