I am reading about making my ajax application crawlable. According to google's doc, i need to change my http requests using hash, so from:
http://www.example.com/get_data?param1=6
to
http://www.example.com/get_data#!param1=6
I honestly don't get how #! could be handled by my server and parameters taken. So this makes me thinking i have don't understood the general concept. How can i pass parameters using hashes instead of '?'
thank you