同一个域 VPS 的不同登陆页面

时间:2020-12-21 16:53:37

标签: apache ubuntu-16.04 vps

我有一个自我管理的 VPS 服务器,没有运行 Ubuntu 的控制面板。我设法成功地将我的域指向服务器。然后我安装了apache2。我在目录中创建了一个索引登陆页面:

var/www/gci/

默认情况下,系统使用默认索引登录页面创建了另一个目录:

var/www/html/

然后我编辑目录下的gci.conf

/etc/apache2/sites-available/

包括以下几行: 服务器管理员邮箱 文档根目录 /var/www/html 服务器名称 burooq.com

整个文件内容如下:

<VirtualHost *: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.example.com


        ServerAdmin myemail
        DocumentRoot /var/www/html
        ServerName burooq.com

        # 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
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

我的问题基本上是,当我使用 http://Burooq.com 访问我的域时,它会出现在 gci 文件夹下的索引页上。但是,当我使用 https://Burooq.com 时,它会出现在 html 文件夹下的索引页上。这怎么可能,我如何将两个请求都指向一个着陆页。

0 个答案:

没有答案