我在 Azure 云中的 Ubuntu Server 中创建了一个子域,但它始终会重定向到主域
这是我的apache.conf
文件
<VirtualHost xx.xx.xx.xxx:80>
ServerName admin.example.com
DocumentRoot /var/www/admin.example.com
</VirtualHost>
/etc/hosts
我还在文件中添加了服务器 IP
xx.xx.xx.xxx admin.example.com
有什么问题?
注意:A host
在域设置中创建了一条记录。
更新
以下是输出curl -v admin.example.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /</title>
</head>
<body>
<h1>Index of /</h1>
<table>
<tr><th valign="top"><img src="/icons/blank.gif" alt="[ICO]"></th><th><a href ="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a hre f="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr>
<tr><th colspan="5"><hr></th></tr>
<tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href=" findetrip/">findetrip/</a></td><td align="right">2016-06-16 04:52 </td><td alig n="right"> - </td><td> </td></tr>
<tr><td valign="top"><img src="/icons/folder.gif" alt="[DIR]"></td><td><a href=" test/">test/</a></td><td align="right">2016-06-16 05:40 </td><td align="right"> - </td><td> </td></tr>
<tr><th colspan="5"><hr></th></tr>
</table>
<address>Apache/2.4.7 (Ubuntu) Server at admin.example.com Port 80</address>
</body></html>
* Connection #0 to host admin.example.com left intact
答案1
您需要为主域和子域分别创建单独的 DNS 记录。换句话说,您需要两个 A 记录 - 一个用于主域,另一个用于子域。