让二级域名http://electrician.ddingsafehome.com.cn/
绑定到5019
端口。
服务器的IP
是:47.103.61.198
。一级域名是:ddingsafehome.com.cn
。
首先让一级域名ddingsafehome.com.cn
指向IP
。
主机记录 | 记录类型 | 解析线路 | 记录值 |
---|---|---|---|
@ | A | 默认 | 47.103.61.198 |
www |
A | 默认 | 47.103.61.198 |
添加一条记录类型为隐性URL
的记录。
主机记录 | 记录类型 | 解析线路 | 记录值 |
---|---|---|---|
electrician | 隐性URL | 默认 | http://ddingsafehome.com.cn:5019 |
@ | A | 默认 | 47.103.61.198 |
www |
A | 默认 | 47.103.61.198 |
注意:
ddingsafehome.com.cn
就是一级域名。注意:添加的类型不是
CNAME
类型。注意:网上有说记录值要写成:
http://ddingsafehome.com.cn:5019/IIS上的网站名称
, 实际来看不可取。
安装IIS重写模块
。
网站根目录下的webconfig
配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
网站配置如下:
类型:http
IP地址:全部未分配
端口:5019
主机名:ddingsafehome.com.cn
注意:以上主机名需要和一级域名对应,不需要和二级域名对应。
最后,通过二级域名http://electrician.ddingsafehome.com.cn/
可以访问在5019
端口上的站点。