我已经在该主题上工作了超过两天,我猜有一个小错误,我自己无法解决。
我想设置一个子域。 xanv.ccvitaal.nl
NSLOOKUP xanv.ccvitaal.nl
我收到以下内容
服务器:8.8.4.4
地址:8.8.4.4#53
非权威性答案:
名称:xanv.ccvitaal.nl
地址:149.102.228.205
因此记录已正确设置
卷曲-v xanv.ccvitaal.nl
enter $ curl -v xanv.ccvitaal.nl*
将URL重建为:xanv.ccvitaal.nl/
*尝试149.210.228.205 ...
*已连接至xanv.ccvitaal.nl(149.210.228.205)端口80(#0)
GET / HTTP / 1.1
主持人:xanv.ccvitaal.nl
用户代理:curl / 7.47.0
接受: /
<日期:2018年8月20日星期一21:36:10 GMT
<服务器:Apache / 2.4.18(Ubuntu)
<上次修改时间:2018年8月20日星期一21:04:17 GMT
<接受范围:字节
<内容长度:73
<变化:接受编码
<内容类型:text / html
<有效!
XANV.CCVITAALNL
*主机xanv.ccvitaal.nl的连接#0在这里保持不变
<VirtualHost *:80>
ServerAdmin me@mydomain.com
#referring the user to the recipes application
DocumentRoot /var/www/html/xanv
ServerName xanv.ccvitaal.nl
<Directory /var/www/html/xanv>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
# Uncomment this directive is you want to see apache2's
# default start page (in /apache2-default) when you go to /
#RedirectMatch ^/$ /apache2-default/
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
它仍然重定向到cvitaal.nl主页
我希望您有一些想法可以帮助我解决这个问题。
K