http://*:80 和 http://+:80 有什么区别
在了解 Web 部署 时,我遇到了一些 netsh.exe 命令,这些命令谈论 http://+:80 和 http://*:80。这些是什么意思?
In learning about Web Deploy I came across some netsh.exe commands that talk about http://+:80 and http://*:80. What do those mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用自 URLPrefix 字符串 (Windows) :
之后的 :80 显示您访问与通配符字符串匹配的 URL 的端口。 80 是访问普通网页最常用(如果不是最常用)的端口之一。
As quoted from URLPrefix Strings (Windows):
The :80 afterwards shows the port through which you're accessing the URL matched by the wildcard string. 80 is one of the most (if not the most) common port used to access normal webpages.
简而言之,如果没有其他处理程序处理请求,"*" 就会处理请求,而 "+" 也会处理请求,即使请求已由任何其他处理程序处理。
一个很好的例子来自 https://stackoverflow.com/a/9459679/6375269
In a few basic words, "*" handles requests if no one else did and "+" handles requests even if it was handled by any other handler.
A good example taken from https://stackoverflow.com/a/9459679/6375269