如何阻止apache2 root和它的默认页面

时间:2014-01-06 15:32:34

标签: .htaccess apache2

我已经设置了apache2 root。它的.htaccess文件是:

# Refuse direct access to all files
Order deny,allow
Deny from all
Allow from 127.0.0.1

但它仍然显示我的默认索引:

  

有效!

     

这是此服务器的默认网页。

     

网络服务器软件正在运行,但尚未添加任何内容。

如何禁用此默认索引或更好地阻止apache2 root?

1 个答案:

答案 0 :(得分:0)

  

How to disable this default index or better block apache2 root?

您可以在DOCUMENT_ROOT/.htaccess文件中使用此mod_rewrite规则:

RewriteEngine On

RewriteRule ^/?$ - [F]