如何为同一IP地址绑定不同的子域名
利用Apache实现:同一个IP绑定多个域名
- 假设你云服务器IP地址为 :12.34.56.78
- 假设你需要使用的多个域名为 :
·www.example.com
·www.test.com
·www.test.cn
·about.test.cn - 假设你云服务器系统为 :Ubuntu-18.04
- 假设你云服务器已经安装了 :Apache
那么本文的教学是:
教你不同域名访问不同的网页目录文件,步骤如下(关键步骤为第5~8步)
-
拥有已经备案的若干个域名和一台有IP的服务器 :
·www.example.com
·www.test.com
·www.test.cn
·about.test.cn
·假设IP为:12.34.56.78 -
在域名服务商处,对其进行DNS解析,解析详情如下 :
·所有域名均采用A类解析,指向IP地址:12.34.56.78(即解析记录值)
·www.example.com
·记录类型:A
·主机记录:www
·记录值:12.34.56.78
·解析线路:默认
·TTL:10分钟
·状态:启用
·www.test.com
·记录类型:A
·主机记录:www
·记录值:12.34.56.78
·解析线路:默认
·TTL:10分钟
·状态:启用
·www.test.cn
·记录类型:A
·主机记录:www
·记录值:12.34.56.78
·解析线路:默认
·TTL:10分钟
·状态:启用
·about.test.cn
·记录类型:A
·主机记录:about
·记录值:12.34.56.78
·解析线路:默认
·TTL:10分钟
·状态:启用 -
在未操作Apache之前,直接访问上述四个网址 :
·其访问结果应该完全一致:因为同一IP地址访问的对象是相同的。 -
在/var/www/html/下分别新建四个文件夹 :
· www_example_com
· www_test_com
· www_test_cn
· about_test_cn -
修改/etc/apache2/apache2.conf文件 :
下拉到最底下,找到以下代码:
# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
在其后增加
IncludeOptional sites-available/*.conf
保存apache2.conf文件 -
在/etc/apache2/sites-available/路径下复制000-default.conf四次并分别重命名为 :
· www_example_com.conf
· www_test_com.conf
· www_test_cn.conf
· about_test_cn.conf -
打开6中的conf文件,找到下述代码
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
统一修改的地方:
(第一行#号要删去)
(第三行的Root目录是第4步中新建的文件夹)
然后分别修改为:
www.example.com
ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/www_example_com
保存www_example_com.conf文件www.test.com
ServerName www.test.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/www_test_com
保存www_test_com.conf文件www.test.cn
ServerName www.test.cn
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/www_test_cn
保存www_test_cn.conf文件about.test.cn
ServerName about.test.cn
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/about_test_cn
保存about_test_cn.conf文件 -
在第4步的每个文件夹中放入不一样的index.html
即可实现不同域名访问不同网页的效果,如果对每个网页(目录)进行配置,则只需要在相应的conf文件中进行属性设置即可。