|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- # 目标
-
-
-
- 让二级域名`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`端口上的站点。
-
|