Apache2子域转到不同的文件夹

时间:2018-02-06 16:02:56

标签: linux apache .htaccess virtualhost

我想在子域名中使用不同的文件夹。例如:example.com使用/var/www/exampleblog.example.com使用/var/www/exampleblog

现在,如果我转到example.comwww.example.com网站正确加载,但如果我转到blog.example.com,我会DNS_PROBE_FINISHED_NXDOMAIN

虚拟主机文件:

example.conf

<VirtualHost *:80>
        DocumentRoot /var/www/example/
    ServerName example.com
    ServerAlias www.example.com
        <Directory "/var/www/example/">
                AllowOverride All
                Options FollowSymLinks
        </Directory>
    ErrorLog /var/log/apache2/example-error
</VirtualHost>

exampleblog.conf

<VirtualHost *:80>
        DocumentRoot /var/www/exampleblog
        ServerName blog.example.com
        <Directory "/var/www/exampleblog/">
                AllowOverride All
                Options FollowSymLinks
        </Directory>
        ErrorLog /var/log/apache2/exampleblog-error
</VirtualHost>

我做错了什么?

1 个答案:

答案 0 :(得分:0)

错误是:在我撰写问题时,域名注册商未发送新设置。他们写道,这将是大约15-20分钟,但有些人为什么花了更多的时间。