如何正确设置虚拟主机

如何正确设置虚拟主机

当我去www.example.fr我得到了正确的 DocumentRoot( /var/www/example/web),但是当我尝试转到例子.fr,它给了我默认的 DocumentRoot( /var/www/)。

我已经尝试了很多方法但都没有效果。

/etc/hosts : 
51.254.122.31   example.fr


/etc/apache2/sites-enabled/example.fr.conf :

<VirtualHost *:80>
        ServerAdmin [email protected]
        ServerName example.fr
        ServerAlias www.example.fr
        DocumentRoot /var/www/example/web/
        DirectoryIndex app.php
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

知道我做错了什么吗?

答案1

您可能忘记了NameVirtualHost指令。您还可以使用 检查已配置的虚拟主机apachectl -S

相关内容