When creating a link, it’s a fairly common error to forget to start the URL with http:// or https://. For example, see the following code:
<a href=”www.google.com”>Google</a>
You might expect the link above to go to Google’s homepage, but without the http:// at the beginning (known as the URL protocol), the link is treated as a relative link, and it actually takes the reader to https://blogfixer.com/www.google.com, a 404 page.
This fix will find all such occurrences on your site and add the correct http:// beginning.
You must log in to submit a review.