index.html 默认不加载

index.html 默认不加载

我有 Ubuntu 18.04 和 Apache 2.4.29

我有

<VirtualHost *:80>
  ServerName blah.com
  DocumentRoot /var/www/html
  DirectoryIndex index.html index.php
  ...
  <Directory /var/www/html>
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

/var/www/html/testindex.html

但当我访问时,blah.com/test/它显示403 Forbidden错误。但我可以访问blah.com/test/index.html并加载页面。

有什么想法我可以在哪里查看我遗漏了什么选项吗?谢谢

答案1

sudo chown -R www-data:www-data /var/www/html 

尝试这个代码

403 Forbidden  its mean you don't have permission 

也许对你有帮助

检查一下你的 .htaccess

相关内容