如何在不使用任何端口的情况下访问ecs任务
我正在运行一个 ecs 任务,为了访问该任务,我正在使用:
http://domainname:port
当我使用 http://domainname
时,我不想在 URL 中提及端口,它应该自动重定向到端口。最好的方法是什么?
I have an ecs task running and to access that currently, I am using:
http://domainname:port
I don't want to mention the port in the URL when I am using http://domainname
it should automatically redirect to port . What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTTP 流量的默认端口是端口
80
。如果您尝试在未指定端口的情况下尝试进行 HTTP 连接,则将使用端口80
。因此,如果您想在不指定端口的情况下访问 URL,则需要将其配置为使用端口80
。The default port for HTTP traffic is port
80
. If you try to attempt an HTTP connection without specifying a port, then port80
will be used. So if you want to access your URL without specifying a port, you need to configure it to use port80
.