Apache2 创建 index.html 文件而不是遵循 DocumentRoot

Apache2 创建 index.html 文件而不是遵循 DocumentRoot

apache2 不会跟随文档根目录。相反,每次我转到 store.test 时,它都会在 var/www/ 中创建一个 index.html 文件

Apache 配置文件

<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

000-默认.conf

<VirtualHost 0.0.0.0:80>
    ServerAdmin webmaster@localhost
    ServerName store.test
    ServerAlias store.test
    DocumentRoot /var/www/hub-store/web
    DirectoryIndex index.php

  <Directory "/var/www/hub-store/web">
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Require all granted
    </Directory>
</VirtualHost>

真的不知道为什么,就我看来,中心商店是 755 全部,所有者组是所有 www 数据

仍然将 html 文件写入 /var/www/ 目录

为什么?

相关内容