How does Google view links with all uppercase?
Is this the same for Google:
example.net/LogIn.html
example.net/LOGIN.html
example.net/login.html
I need to redesign an old site with uppercase on links, but I don't want to lose Google rank.
How does Google view links with all uppercase?
Is this the same for Google:
example.net/LogIn.html
example.net/LOGIN.html
example.net/login.html
I need to redesign an old site with uppercase on links, but I don't want to lose Google rank.
HTTP URL paths are case-sensitive.
Live example: The following two URLs only differ in O
vs. o
and they lead to different pages:
So the first assumption of every conforming consumer should be that /LogIn.html
, /LOGIN.html
, and /login.html
could lead to different resources.
Consumers might use various signals to decide if that’s really the case or if the server simply accepts any case (e.g., by detecting duplicate content). But if you have such a server, you would ideally use 301 redirects to point to the canonical variant, or, if that’s not possible, the canonical
link type (you might also want to use this one in addition to the redirect).
© 2022 - 2024 — McMap. All rights reserved.