2

Possible Duplicate:
What's the shebang (#!) in Facebook and new Twitter URLs for?

What does the (#!) in Twitter URLs do?

Example: http://twitter.com/#!/search/stackoverflow

Community
  • 1
  • 1
Wouter Dorgelo
  • 11,770
  • 11
  • 62
  • 80

3 Answers3

4

Its for search bots: http://code.google.com/web/ajaxcrawling/docs/getting-started.html

circusbred
  • 1,240
  • 8
  • 8
4

That is a way to make ajax applications crawlable. Check this out:

Sarfraz
  • 377,238
  • 77
  • 533
  • 578
1

It's called a shebang or hashbang, besides the above mentioned (making Ajax actions crawable). It does, in a more general sense, make Ajax actions and results more accessible, for example, at Facebook. For example the URL http://twitter.com/#!/search/stackoverflow redirects to http://twitter.com/search/stackoverflow - so you can just give it to someone and that person sees the same as you did after invoking some Ajax functionality. Facebook does the same with picture galleries.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Hannes
  • 8,147
  • 4
  • 33
  • 51