使用IIS Express托管网站

时间:2015-02-06 15:46:04

标签: iis localhost webmatrix

我之前看到过这个问题,但我仍然没有得到答案。 我试图从其他设备(而不是我的笔记本电脑)调用我的页面我遵循我已在此处阅读的说明,这些是我的步骤: 1) 我更改了我的" applicationhost"赞扬文件:

netsh http add urlacl url=http://localhost:80/ user=everyone 

然后:

netsh http add urlacl url=http://stephanmaimon:8080/ user=everyone 

现在我的" applicationhost"文件看起来像这样:

<sites>
        <site name="WebSite1" id="1" serverAutoStart="true">
            <application path="/">
                <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation="*:8080:stephanmaimon" />
            </bindings>
        </site>
        <site name="EmptySite" id="2">
            <application path="/">
                <virtualDirectory path="/" physicalPath="C:\Users\Stephan Maimon\Documents\My Web Sites\EmptySite" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation="*:55436:stephanmaimon" />
            </bindings>
        </site>

现在我的WebMatrix设置看起来像this,但是当我按下&#34;运行&#34; 我收到此错误 -

  

无法启动网站,因为需要管理权限才能绑定到主机名或端口。   建议:   1.替换&#34;主机名&#34;与&#34; localhost&#34;。

现在我卡住了.... 请帮帮我,谢谢

0 个答案:

没有答案