Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created September 24, 2013 09:28
Show Gist options
  • Save thekarel/6682425 to your computer and use it in GitHub Desktop.
Save thekarel/6682425 to your computer and use it in GitHub Desktop.
myApp.config(function($routeProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$routeProvider
.when('/page1', { template: 'page1.html', controller: 'Page1Ctrl' })
.when('/page2', { template: 'page2.html', controller: 'Page2Ctrl' })
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment