When using Backbone Router it will treat a “page” route as #page.
Can i make #! as default instead of just # ?
I would like to make html 4 browsers use #! (http://example.com/#!/page/subpage) and browsers with html5 history use normal address like http://example.com/page/subpage without having to use “!page” as the route.
“#!” is to make the ajax page crawlable. See http://code.google.com/web/ajaxcrawling/ for more info.
I dediced to use the following approach:
This way i get http://example.com/quem-somos and http://example.com/#!/quem-somos for each browser support.