For example instead of using "http://localhost/#/Employee/5", I want to go to "http://localhost/Employee/5". I want the web server to return the exact same ~/Default.aspx page for all urls (not 404s). The url in the address bar must stay as /Employee/5 and not redirect to my base page. Then the javascript framework can route the url within my single-page-app.
I have the js client side already working (with pushState: true in my backbone.history.start - see Backbone routes without hashes?).