Possible Duplicate:
What's the shebang (#!) in Facebook and new Twitter URLs for?
I recently saw Facebook and Twitter's URL:
http://twitter.com/#!/username
What is #! ? Anyone?
Possible Duplicate:
What's the shebang (#!) in Facebook and new Twitter URLs for?
I recently saw Facebook and Twitter's URL:
http://twitter.com/#!/username
What is #! ? Anyone?
The # is the hash sign, used for referencing an anchor in HTML. Javascript can read the text after a hash in a URL, making it usable for AJAX solutions. Changing the anchor will not navigate away from the page, but it will update the browser history, allowing you to navigate back and forth. As for the !, it likely is just used internally, it doesn't mean anything in a URL.