I have a webapp hosted in Amazon S3, the webapp is build with jQuery Mobile and I use changePage lo navigate between pages, I'm not using the hash operator(#) when I change the page.
I'm having problems when the user copy the url and paste it in a new tab
For example:
http://www.exampleurl.com/page1.html
loads the page page1.html that is in amazon s3 with only the jquery page structure...
The behavior that I want is that load index.html and with js read the url, detect the page and load the correct page.
With Apache I solve this with URL Rewriting... but for Amazon S3 I didn't find any similar...
NOTE: I know that if I activate the hash operator (#) in my urls the problem is solved but I need clean urls without #.