Take a very simple example, for example, I have this URL:
http:
and I want to use this content in the section:
http:
UPDATE . Note that the “bad” URL is canonical (it is created by CMS, which uses it internally to bind), so "/about"this is just a way to polish it.
I have two broad options: server-side redirection or client-side redirection. I always thought that the server side is preferable because it is more efficient, i.e. HTTP traffic is about double. However, SEO techniques tend to favor a single resource URL, so the client side should be preferred.
How do you resolve this conflict, and are there other factors that I have missed?
source
share