为什么我的虚拟主机指向第一个虚拟主机?

时间:2020-08-11 22:45:53

标签: apache ubuntu virtualhost lamp

在过去的一天里,我一直困扰于此问题,而我为修复该问题所做的一切都失败了。

我正在尝试将网站从Windows IIS迁移到Ubuntu LAMP。我已经在var / www /目录中设置了它们,并为它们制作了配置文件。

我已经设置了2个虚拟主机:1个用于samtownsendmusic.co.uk,1个用于www.swim-4u.co.uk (我认为仅使用真实域而不是示例域可能会更容易。)

这些是配置文件:

    <VirtualHost samtownsendmusic.co.uk:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        ServerName samtownsendmusic.co.uk
        ServerAlias samtownsendmusic.co.uk
        ServerAdmin admin@samtownsendmusic.co.uk
        DocumentRoot /var/www/samtownsendmusic.co.uk


        RewriteEngine on

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
        RewriteEngine on
        RewriteCond %{SERVER_NAME} =samtownsendmusic.co.uk
        RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

swim-4u.co.uk.conf

<VirtualHost www.swim-4u.co.uk:80>
            # The ServerName directive sets the request scheme, hostname and port that
            # the server uses to identify itself. This is used when creating
            # redirection URLs. In the context of virtual hosts, the ServerName
            # specifies what hostname must appear in the request's Host: header to
            # match this virtual host. For the default virtual host (this file) this
            # value is not decisive as it is used as a last resort host regardless.
            # However, you must set it for any further virtual host explicitly.
            ServerName www.swim-4u.co.uk
            ServerAdmin admin@swim-4u.co.uk
            DocumentRoot /var/www/swim-4u.co.uk/
    
            RewriteEngine on
    
            # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
            # error, crit, alert, emerg.
            # It is also possible to configure the loglevel for particular
            # modules, e.g.
            #LogLevel info ssl:warn
    
            ErrorLog ${APACHE_LOG_DIR}/error.log
            CustomLog ${APACHE_LOG_DIR}/access.log combined
    
            # For most configuration files from conf-available/, which are
            # enabled or disabled at a global level, it is possible to
            # include a line for only one particular virtual host. For example the
            # following line enables the CGI configuration for this host only
            # after it has been globally disabled with "a2disconf".
            #Include conf-available/serve-cgi-bin.conf
            RewriteEngine on
            RewriteCond %{SERVER_NAME} =www.swim-4u.co.uk
            RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
    </VirtualHost>

然后我去samtownsendmusic.co.uk,它加载得很好。 当我尝试转到www.swim-4u.co.uk时,它只会加载samtownsendmusic.co.uk

我对apache和linux还是很陌生,因此可以提供任何帮助。谢谢

1 个答案:

答案 0 :(得分:0)

我想我已经解决了。 我不确定为什么它起作用,但是我从cloudflare中删除了我的网站。然后,我重新安装了SSL证书,重新设置了虚拟主机,并停用了所有WordPress插件。

以某种方式使它起作用