Difference between links with different case
Asked Answered
A

1

0

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.

Actual answered 20/4, 2016 at 14:35 Comment(0)
D
0

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).

Devalue answered 24/4, 2016 at 0:26 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.