I am working on a web application that runs through backbone and makes use of the router. On success of certain events I want to redirect users to a static success page.
What is a good naming convention to clearly separate routing url paths from a static pages such as my success page?
the routing object in my route backbone object looks like this:
App.MyRouter = Backbone.Router.extend({
routes: {
"": "index",
"!/search/*search": "search",
"!/profile/*user": "profile",
"!/business/:id": "business"
}
});