答案1
将 Index.php 文件的名称更改为 index.php。Linux 服务器区分大小写。index.html、index.htm 或 index.php 文件名必须全部小写才能被找到。如果服务器找不到索引,它将显示文件列表。
答案2
在配置文件中添加以下行:
<Directory /var/www/azgor.com/>
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
就我而言,配置文件是/etc/apache2/sites-available/azgor.conf
。
然后使用以下命令重新启动 Apache:
sudo service apache2 restart