LAMP vhost 仍然指向 www/html

LAMP vhost still points to www/html

我在 /etc/apache2/sites-available/lion.dev 中创建了以下虚拟主机文件:

<VirtualHost *:80>
    ServerAdmin webmaster@lion.dev
    ServerName lion.dev

    DocumentRoot /var/www/lion.dev
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    <Directory /var/www/lion.dev/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
    </Directory>

    CustomLog /var/log/apache2/lion.dev/access.log combined
    ErrorLog /var/log/apache2/lion.dev/error.log
</VirtualHost>

问题是当我在浏览器中访问 lion.dev 时,它实际上指向 /www/html 文件夹。

我错过了什么,为什么这不起作用?

您是否取消了 httpd.conf 文件中加载虚拟主机的注释? 这通常被注释掉,模块不会被加载,只需删除虚拟主机部分之前的//。 很抱歉我看到你解决了这个问题。

我通过卸载 Ubuntu 并重新安装 Windows 10

解决了这个问题