On one part of our site we have a section with a bunch of url's formatted like so:
http://mysite.com/section-name/?feed_id=1334
They are a list of a dozen individual links that are presented like:
<a href="http://mysite.com/section-name/?feed_id=1334">Article Title of Some Sort</a>
<a href="http://mysite.com/section-name/?feed_id=1333">Different Title</a>
I can see Google's bot hitting http://mysite.com/section-name/ but it never indexes the various articles (it's been 6 months). Why would this be?
Each link leads to a page that displays a complete, unique, article and they are not spammy in any way. They are updated and added to daily.
Could it be the use of the words feed_id in the url? Any suggestions on how to get Google to start indexing these articles?
/file.php?feed_id=1334Google may index them. 2) The use of a simple query string could be avoided. If you rewrite your URLs, to something such ashttp://mysite.com/section-name/1334they are typically perceived as being much more search engine friendly. – cyberx86 Jan 8 at 9:14http://foo.com/some-article-from-today/get indexed correctly and don't have a 'filename'. I think your second point might be right, though. I also wonder if the word "feed" being in there makes Google think it's dealing with an rss feed and not index it the same way? Regardless I am going to try changing the urls to something like your second suggestion. Thx. – Lothar_Grimpsenbacher Jan 9 at 3:12http://foo.com/section-name/Latest-figures-for-SASS-uptakeor perhaps evenhttp://foo.com/section-name/saas=1234– Lothar_Grimpsenbacher Jan 9 at 5:12