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

问题描述

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

我正在尝试将网站从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 [email protected]
        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 [email protected]
            DocumentRoot /var/www/swim-4u.co.uk/
    
            RewriteEngine on
    
            # Available loglevels: trace8,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,R=permanent]
    </VirtualHost>

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

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

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)