Mobile app version of vmapp.org
Login or Join
Nimeshi995

: URLs with "space", "%20", "+" are canonicals? If I have a URL encoded and another does not, e.g. <a href="http://example.com/images/foo abc.jpg">Image</a> <a href="http://example.com/images/foo+abc.jpg">Image</a&g

@Nimeshi995

Posted in: #CanonicalUrl #Seo #Url #UrlEncoding

If I have a URL encoded and another does not, e.g.


<a href="http://example.com/images/foo abc.jpg">Image</a>
<a href="http://example.com/images/foo+abc.jpg">Image</a>
<a href="http://example.com/images/foo%20abc.jpg">Image</a>


or (using utf8)


<a href="http://example.com/portugal/évora">Image</a>
<a href="http://example.com/portugal/%C3%A9vora">Image</a>


They will be considered the same by search engines?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Nimeshi995

1 Comments

Sorted by latest first Latest Oldest Best

 

@Megan663

Spaces in URLs should be encoded. That would eliminate foo abc.jpg as the canonical.

Here is a question that addresses how the space should be encoded: In a URL, should spaces be encoded using %20 or +? Spaces may only be encoded as a + in the query string portion of the URL, so that eliminates the foo+abc.jpg as the canonical.

Your canonical URL for the space should be foo%20abc.jpg

For URLs with non-ASCII UTF-8 characters, the real URL is always the encoded one. Browsers typically only display the URL with non-ASCII characters in the address bar. If you copy and paste the URL out, you will get the encoded version. For example see: www.dmoz.org/World/Thai/%E0%B8%9A%E0%B9%89%E0%B8%B2%E0%B8%99/


That makes your canonical URL: %C3%A9vora

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme