我正在尝试在PC上的本地主机上创建一个子域。
我当前访问的域如下:
http://localhost:19215
出于测试目的,我应启用如下所示的域访问权限:
mytestname.localhost:19215
或将域更改为这样:
mytestname.localhost
都可以,但是我无法使其正常工作。.我尝试编辑如下所示的applicationhost.config文件:
<site name="Somesitename" id="3">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="somepath" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:19215:localhost" />
<binding protocol="https" bindingInformation="*:44343:localhost" />
</bindings>
</site>
这是默认配置的样子。...
我尝试添加这样的一行:
<binding protocol="http" bindingInformation="*:19215:*.localhost" />
这意味着我可以在本地主机之前直接输入任何URL,并且仍然可以像下面这样工作:
mytestname.localhost:19215
mytestname2.localhost:19215
mytestname4.localhost:19215
mytestname5.localhost:19215
mytestname6.localhost:19215
但是我得到一个错误:
localhost refused to connect.
该应用程序甚至没有显示它已启动...
有人可以帮我这个忙吗?我在这里做什么错了?