Mobile app version of vmapp.org
Login or Join
Speyer207

: Does automatically redirecting typo urls to correct ones cause SEO problems? I am working on a website that has permalinks in this form: example.com/my-content-is-here-123 example.com/another-content-page-234

@Speyer207

Posted in: #Redirects #Seo #Url

I am working on a website that has permalinks in this form:

example.com/my-content-is-here-123
example.com/another-content-page-234


The numbers at the end represent the page/post unique ID.

I have a lot of backlinks lost because of typos. Probably people wrote the links manually instead of using copy paste.

I can use a 301 redirect method so that each incorrect link is 301 redirected to the correct URL based on that ID. So, if someone would by mistake link to my website with a typo, something like example.com/my-content-is-xxx-123 or even blah-blah-blah-123... it would be 301'd to the correct URL.

This way, I correct every lost inbound link based on that unique ID.

Will this cause any issues in regards to SEO? Because in this way there will be a couple of different URLs created for each post that are 301 redirected. Depending on each case of course. And I don't know how search engines would consider this.

I know that in best practice I should contact the other webmasters and simply ask them to correct it, but there are too may of them.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Speyer207

2 Comments

Sorted by latest first Latest Oldest Best

 

@BetL925

Redirecting typo URLs does not cause any SEO problems. In fact, I would call it an SEO best practice. It actually helps your SEO.

When somebody creates a broken link to your site due to a typo, users that click can't get to the right page easily without a redirect. Similarly, search engine spiders can't properly attribute the value of that link to your site unless you implement the redirect.

On some of my sites I have software that puts the text of 404 URLs through site search to automatically try to find the correct page for a redirect.

On a side note, I recommend putting the numeric id close to the beginning of URLs rather than at the end. URLs are often truncated for display purposes or split into multiple lines in emails. When the ID is near the beginning, it is much less likely to get cut off. It makes it much easier to redirect when the id is intact.

10% popularity Vote Up Vote Down


 

@Steve110

No, it won't affect. Google spiders follow HTTP locations which 301 is one of them


It's a good idea to pick one of those URLs as your preferred
(canonical) destination, and use 301 redirects to send traffic from
the other URLs to your preferred URL. A server-side 301 redirect is
the best way to ensure that users and search engines are directed to
the correct page. The 301 status code means that a page has
permanently moved to a new location. - support.google.com/webmasters/answer/139066?hl=en#4

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme