So I'm trying to get ember to use the history api for it's routing to get rid of the hashbangs. But when I use
App.Router.reopen({
location: 'history'
});
I get the following error
Assertion failed: The URL '/ember-store/' did not match any routes in your application
I'm using MAMP for my localhost server and all the projects are just sub folders in the htdocs folder. The folder that the whole app and index.html files for this ember.js app are in is called "ember-store". How do I fix this issue so I can use the history API correctly?