我想阻止直接访问显示位于/var/www/html/index.html
我更改了以下内容:
/etc/apache2/sites-available/000-default.conf
DocumentRoot /var/www/websites
重新启动Apache,但如果我直接访问我的服务器,它仍然会/var/www/html
。
修改
只有在我使用HTTPS访问服务器时,才会出现此问题。在HTTP上它工作正常。
答案 0 :(得分:1)
您还需要更改/etc/apache2/apache2.conf
。找到这个:
<Directory /var/www/html/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
并切换到您想要的目录