Ajax seo technique

I read several topics regarding enabling google to crawl ajax-based sites, but the information is pretty inconsistent. Is it possible? If so, can someone send a link to the study guide, please?

I most often use ajax with jquery as follows:

  • I have a div
  • I am sending a request to a php server where html is generated
  • When the answer comes, I set the internal html div with the answer I received

Is this a good approach to optimize a seo page?

thanks

+4
source share
5 answers

Have a look at this link: http://code.google.com/web/ajaxcrawling/

Google has recommendations for revealing your content to its crawler.

Also, this question on SO said the same thing: What is shebang / hashbang (#!) On Facebook and the new Twitter URLs for?

+4
source

I prefer a progressive development development strategy in which the website is designed with very simple markup that search engines can crawl and then add AJAX from the top for user convenience. This typically uses the β€œcapture” of links and forms with Javascript to override the default behavior and replace it with AJAX requests.

+1
source

You can create a website completely accessible without JavaScript and after that speed up what you want with AJAX on top of it.

0
source

On my website I use a regular php page and if it requests Ajax it doesn’t include the header and footer, it just returns the content (body) and includes it.

If the content is retrieved from the database, you can create a regular page that retrieves the content and program for Ajax only.

Think, if you disable Javascript, your site will continue to work.

0
source
0
source

Source: https://habr.com/ru/post/1344453/


All Articles