如何在 IIS 7 上发布网站

发布于 2024-11-04 05:31:08 字数 276 浏览 0 评论 0原文

我可以通过在 IIS 7 中的 Default Web Site 下创建虚拟目录来发布网站。在这种情况下,url 变为 http://localhost/ABC 其中 ABC< /code> 是我的网站,它运行良好。但我必须将网站发布到默认网站同一级别,而不是在它之下。在这种情况下,网址变为 http://ABC:81,其中 81 是端口号,但网站无法正常工作。
任何机构都可以解决吗?

I am able to publish website by creating virtual directory under Default Web Site in IIS 7. In this case url becomes http://localhost/ABC where ABC is my website and it is working fine. But I have to publish website at same level to Default Web Site, not under it. In this case url becomes http://ABC:81 where 81 is port number, but website is not working.
Can any body solve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寄居者 2024-11-11 05:31:08

对于本地 PC,我们只能使用

IP:127.0.0.1 &
hostname : localhost

都重定向到本地 PC
如果您使用 http://ABC.com 则会检查 DNS。所以请设置主机名 localhost 和端口 81。
这样你就可以浏览http://localhost:81。或者你可以在绑定中设置IP 127.0.0.1和端口81,这样你就可以使用 http://127.0.0.1:81还有

for local PC we can use only

IP : 127.0.0.1 &
hostname : localhost

both redirect the to local PC
if you use http://ABC.com it will be check on DNS. so plz set hostname localhost and port 81.
so u can browse http://localhost:81. or u can set IP 127.0.0.1 and port 81 in binding so u can browse with http://127.0.0.1:81 also

檐上三寸雪 2024-11-11 05:31:08

关闭默认网站并添加您的网站以在端口 80 上运行。您一次只能在一个主机名的一个端口上运行一个网站。

编辑:再次阅读您的帖子后,您是否尝试访问第二台服务器的不同主机名?
除非 ABC 是有效的主机名,否则 http://ABC:81 无效。将其更改为 http://localhost:81 以测试您的其他站点。

Turn off the default web site and add yours to run on port 80. You can only run one web site on one port on one hostname at a time.

EDIT: After reading your post again, are you trying to access a different hostname for the second server?
http://ABC:81 is not valid unless ABC is a valid hostname. Change that to http://localhost:81 to test your other site.

っ左 2024-11-11 05:31:08

如果您想将其用于测试目的,您可以转到 c:\windows\systen32\drivers\etc 并编辑主机文件,您可以添加:

127.0.0.1 abc

然后您就可以通过http://abc访问您的网站。
或者您可以使用 127.0.0.1 www.abc.com 代替

If you want to use it for test purposes you can go to c:\windows\systen32\drivers\etc and edit host file and you can add:

127.0.0.1 abc

Then you can access your website through http://abc.
Or you may use 127.0.0.1 www.abc.com in place

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文