I am having trouble accessing localhost through
http://localhost
and
http://127.0.0.1
But i can access both when i use https.
https://localhost
Why do you think this is? The web server is Tomcat 7.0.25.
Thanks.
I am having trouble accessing localhost through
http://localhost
and
http://127.0.0.1
But i can access both when i use https.
https://localhost
Why do you think this is? The web server is Tomcat 7.0.25.
Thanks.
When you use http://
to connect to the server, unless otherwise stated as part of the url your browser will assume port 80
.
When you use https://
to connect to the server, unless otherwise stated your browser will assume port 443
.
You can connect on port 443 but not on port 80.