Mobile app version of vmapp.org
Login or Join
Yeniel560

: Relative URLs confuse Google crawler I'm having some odd problems that are apparently being generated by Google crawler. Bing isn't these errors, so it's kind of confusing. The problem seems to

@Yeniel560

Posted in: #Googlebot #Url

I'm having some odd problems that are apparently being generated by Google crawler. Bing isn't these errors, so it's kind of confusing. The problem seems to be because of relative links.

Google crawler reports this URL as something it found:
example.com/event_comments/ChupacabraCon/eedit/event_comments/Siege_of_Augusta/event_comments/Genghis_Con_XXXV/91

However that isn't a URL thats generated by the site. The one below is:

example.com/event_comments/Genghis_Con_XXXV/91

I'm puzzled why Bings crawler isn't having a problem when Google is. Do I need to change all of the relative URLs to strict? Is there another work around?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Yeniel560

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ogunnowo487

As mentioned in comments, Google shouldn't get confused by relative URLs, unless perhaps there are other issues with your page.

I see that you've used the BASE element:

<base href='/'/>


The href attribute determines the base URL for the page - the URL from which relative URLs are based. However, according to the spec this should take an absolute URL, whereas you have specified a root-relative URL /. Modern browsers (FF4+ for instance) can cope with root-relative base URLs, however, this behaviour may not be universal and is possibly where Google is tripping up.

The self closing / can also be omitted.

<base href="http://findgamers.us/event_comments/Genghis_Con_XXXV/91">

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme