I'm currently using this solution to host my angular application on AWS S3 using Html5Mode: S3 Static Website Hosting Route All Paths to Index.html
My problem is that I want to keep the querystring during the redirection:
http://domain.org/posts?order=2
currently redirect to http://domain.org/#!/posts
I want it to go to http://domain.org/#!/posts?order=2
.
Is this even possible?