My jQuery uses the hash tag to load content into a div when a link is clicked, this allows me to have one main page and all other pages as just simple text pages that will be loaded into the main page this has worked perfectly, till Google indexed my individual pages so the hash tag does not work

scotwebtech.co.uk (the content in the main div changes)

scotwebtech.co.uk/aboutus (the content is not put into the div just simple page loaded)

Changing all the link names of the pages to include # does not work.

link|improve this question

57% accept rate
changing all the link names of the pages to include # does not work – lewis Jul 22 '11 at 23:46
possible duplicate of jquery link problem? – Brock Adams Jul 23 '11 at 0:05
kinda i think this explains my problem better... – lewis Jul 23 '11 at 0:11
feedback

1 Answer

Several things:

  1. Don't require javascript to get such basic content!!! If the purpose of that site is to sell your services, you've lost me as a client , the moment I browse it -- when I see (or don't see, in this case) such things.

  2. Putting the octothorpe in the links does work. IE http://www.scotwebtech.co.uk/#aboutus gets you to the right page.

  3. It's "Hashbang" or "Shebang", not "hash tag" and the proper use is #!, if you want Google, etc., to index your ajax-ified content.

  4. Hashbangs will cause you all... sorts... of problems, if you are not very careful.

  5. Irregardless, if you persist in this approach, your server must be configured (at the Apache, PHP, etc. level) to interpret or 301 redirect all of: /aboutus, /#!aboutus, and /#!/aboutus -- Plus /#aboutus, if you still use that approach (don't).


That is, this is not really a jQuery issue (so far), its a server-configuration / application-design issue.

link|improve this answer
thanks for your input, im just going to get rid of the jquery elements as they aren't really needed as you say, – lewis Jul 23 '11 at 8:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.