The effect of SEO using hash links?

I want to use some back button support, for example, listed here . Since the page is usually loaded by javascript looking at hash tags. Will this create a problem for search indexing? Do yahoo / google / bing do javascript to get content? I am also thinking of using HTML5 state for URLs instead of hashtags, where applicable.

Example: - If I have a website www.a.com and click on the link, it will become www.a.com/#!/about. When there is a separate request at www.a.com/#!/about, javascript will take care of loading the content. But how does the search engine take care of this. What do I need to do to make this work.

Since I am starting now and want to create a complete ajax site from PHP to backend and Javascript using jQuery in the interface. What useful resources can I see?

+5
source share
1 answer

See here how to use hashbangs for SEO AJAX-Links.

Official Google AJAX Help and Help page .

Basically you serve a piece of HTML equivalent to the loaded content with a special request for each page.

Check out the HTML5 History API

+8
source

All Articles