CodeIgniter, jQuery load and strange Google indexing of my content -



CodeIgniter, jQuery load and strange Google indexing of my content -

i have unusual problem google indexing of website. problem search engines, utilize google example. (the website in bulgarian)

the website cooking recipes. build using codeigniter , uses jquery load function load comments recipes. jquery load calls controller function not straight accessible via url request, if request ajax.

if seek access comments function straight (not ajax) redirected recipe corresponding uri segments (or homepage if nil found).

the problem is, google index ajax requests not actual page of recipe.

below i'm placing code , links problems.

the domain http://www.gotvachnicata.com/ , can grab instance next recipe: http://www.gotvachnicata.com/potrebiteli/gotvachnicata/recepta/domashna-pica-sas-salam-i-lyuti-chushki

we have ajax request loads comment executed @ next way:

$(document).ready(function(){ $('.recipe-comments').load('http://www.gotvachnicata.com/process/get_recipe_comments/24'); });

the lastly segment id of recipe. if request controller function through ajax comments recipe id, if seek direct access redirected recipe id. done next code.

if ($this->input->is_ajax_request()) { //load comments } else { //redirect recipe }

i have sitemap submitted google. can see here: http://www.gotvachnicata.com/sitemaps/sitemap_recipes.xml

i'm using structured info (http://schema.org/) if makes difference.

and @ end actual problem - when search google recipe (link search http://bit.ly/xhnk3k) receive next link displayed in search results

http://www.gotvachnicata.com/process/get_recipe_comments/24

instead of

http://www.gotvachnicata.com/potrebiteli/gotvachnicata/recepta/domashna-pica-sas-salam-i-lyuti-chushki

and apply recipes on website. looks google index ajax request instead of actual page.

i have no thought of why , need alter prepare it. me seo of import website have seo friendly urls indexed in google.

jquery codeigniter seo indexing

Comments

Popular posts from this blog

javascript - mongodb won't find my schema method in nested container -

Hibernate criteria by a list of natural ids -

ios - Lagging ScrollView with UIWebview inside -