传统上,我在本地主机开发服务器上使用自定义域。大致如下:

dev.example.com
dev.api.example.com

这为我在使用外部api(如Facebook)时提供了很大的灵活性。这在过去与内置的Visual Studio Development Server一起工作得很好,因为我所需要做的只是向指向127.0.0.1的DNS记录添加一个CNAME。

但是,我还不能让它与IIS Express一起工作。我所做的一切努力似乎都失败了。我甚至向applicationHost添加了正确的XML配置。IIS Express的配置文件,但它似乎不能像真正安装IIS那样识别有效的条目。

<binding protocol="http" bindingInformation="*:1288:dev.example.com" />

每当我输入这一行并尝试请求http://dev.example.com:1288时,我都会收到以下消息:

错误请求-无效的主机名

有人知道我是否遗漏了什么明显的东西吗?或者IIS Express团队真的缺乏预见到这种类型的使用?


当前回答

并对该方法进行了测试。NET Core 3.1和Visual Studio 2019。

vs PROJECTNAME \配置\ applicationhost。配置

将“*:44320:localhost”修改为“*:44320:*”。

<bindings>
    <binding protocol="http" bindingInformation="*:5737:localhost" />
    <binding protocol="https" bindingInformation="*:44320:*" />
</bindings>

这两个链接都有效:

https://localhost:44320 https://127.0.0.1:44320

现在,如果你想让应用程序与自定义域一起工作,只需要在主机文件中添加以下一行:

C:\Windows\System32\drivers\etc\hosts

127.0.0.1 customdomain

Now:

https://customdomain:44320

注意:如果你的应用在没有SSL的情况下工作,请更改protocol="http"部分。

其他回答

无效的主机名表明您在IIS Express配置文件中配置的实际站点(很可能)未运行。IIS Express没有IIS那样的流程模型。


要运行站点,需要显式启动(通过从webmatrix打开并访问,或者通过命令行调用iisexpress.exe(从它的安装目录),并使用/site参数。


通常,允许使用完全限定的DNS名称进行本地访问的步骤如下 让我们使用DNS名称dev.example.com的示例

edit %windows%\system32\drivers\etc\hosts file to map dev.example.com to 127.0.0.1 (admin privilege required). If you control DNS server (like in Nick's case) then the DNS entry is sufficient as this step is not needed. If you access internet through proxy, make sure the dev.example.com will not be forwared to proxy (you have to put in on the exception list in your browser (for IE it would be Tools/Internet Options/Connections/Lan Settings, then go to Proxy Server/Advanced and put dev.example.com on the exeption list. Configure IIS Express binding for your site (eg:Site1) to include dev.example.com. Administrative privilege will be needed to use the binding. Alternatively, a one-time URL reservation can be made with http.sys using netsh http add urlacl url=http://dev.example.com:<port>/ user=<user_name> start iisexpress /site:Site1 or open Site1 in WebMatrix

对于Visual Studio 2015,上述答案中的步骤适用,但应用程序主机。配置文件在一个新的位置。在你的“解决方案”文件夹中,如果你升级了,并且有两个版本的applicationhost,这是令人困惑的。在您的机器上配置。

\.vs\config

在该文件夹中,您将看到您的applicationhost。配置文件

或者,您也可以在解决方案文件夹中搜索.config文件并以这种方式找到它。

我个人使用以下配置:

在我的hosts文件中包含以下内容:

127.0.0.1       jam.net
127.0.0.1       www.jam.net

下面是我的applicationhost。配置文件:

<site name="JBN.Site" id="2">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
        <virtualDirectory path="/" physicalPath="C:\Dev\Jam\shoppingcart\src\Web\JBN.Site" />
    </application>
    <bindings>
        <binding protocol="http" bindingInformation="*:49707:" />
            <binding protocol="http" bindingInformation="*:49707:localhost" /> 
    </bindings>
</site>

记得以管理员身份运行visual studio 2015实例!如果你不想每次都这样做,我建议:

默认情况下,作为管理员如何运行Visual Studio ?

我在尝试升级到visual studio 2015时遇到了问题,并意识到我的配置都没有被转移。

在使用Visual Studio 2012和IIS Express时,更改现有绑定不会永久工作。(它可能在你关闭VS之前有效,但在那之后,事情就变得非常混乱了。)

关键是保持现有的本地主机绑定并在其之后添加一个新绑定。

除非您以管理员身份运行,否则还需要运行netsh add urlacl(以标准用户身份授予自己运行非本地主机站点的权限)。

如果要允许任意主机名,整个过程如下:

创建您的web应用程序,并找出它正在使用的端口(参见项目属性,web选项卡,项目Url)。 在管理员提示符下,运行以下命令(将portnumber替换为您在#1中计算出的端口号): Netsh HTTP添加urlacl url="http://*:portnumber/" user=everyone Netsh HTTP添加urlacl url="http://localhost:portnumber/" user=everyone

您也可以使用您的用户名(DOMAIN\ user),而不是所有人,以获得更好的安全性。

Open applicationhost.config (usually under My Documents\IIS Express\config), and find the element with your port number. Add one more binding with the host name you want (in this case, *). For example: <site name="MvcApplication1" id="2"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="C:\sites\MvcApplication1" /> </application> <bindings> <binding protocol="http" bindingInformation="*:12853:localhost" /> <binding protocol="http" bindingInformation="*:12853:*" /> </bindings> </site>

注意,如果想打开所有主机名(*),需要两个netsh命令(一个用于*,一个用于localhost)。如果您只想打开一个特定的主机名,则不需要严格地使用第二个netsh命令(localhost);只有具有特定主机名的一个就足够了。

我使用iisexpress-proxy(从npm)来实现这一点。

https://github.com/icflorescu/iisexpress-proxy

我试了以上所有的方法,都没用。解决这个问题的方法是在hosts文件中添加IPv6绑定。在@David murdoch回答的第五步中,添加两行而不是一行,即:

127.0.0.1 dev.example.com
::1 dev.example.com

我通过从命令行检查$ ping localhost来计算出来,它通常返回:

来自127.0.0.1的回复:bytes=32 time<1ms TTL=128

相反,它现在返回:

回复from::1:时间<1ms

我不知道为什么,但是由于某种原因,IIS Express开始使用IPv6而不是IPv4。