https://localhost:443 变为 https://localhost

https://localhost:443 变为 https://localhost

我通过 启动了一个 Web 应用程序sudo PORT=443 HTTPS=true ./node_modules/.bin/react-scripts start

然后我https://localhost:443/#/start在浏览器中运行。它确实打开了起始页,但 URL 变成了https://localhost/#/start

谁能告诉我为什么https://localhost:443/#/start会变成https://localhost/#/start

PS:浏览器是Chrome。

答案1

HTTP 默认隐藏端口是80,而 HTTPs 是443

例子:

http://localhost | http://localhost:80

https://localhost | https://localhost:443

443 是 HTTPs 网站的默认端口。

例如,
https://superuser.com

是相同的
https://superuser.com:443

http://superuser.com

是相同的
http://superuser.com:80

相关内容