i have an angular js app and i am using it in a conventional html page have included angular route also
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular-route.js"></script>
and in my module
var nameApp = angular.module('mainApp', ['ngRoute']);
mainApp.config(['$routeProvider','$locationProvider',function($routeProvider, $locationProvider) {
console.log('config ');
$routeProvider
.when('boxAuth', {
templateUrl: 'boxReturn.html',
controller: 'authController'
});
// configure html5 to get links working on jsfiddle
$locationProvider.html5Mode(true);
}])
;
now if i try to access the url http://localhost:8082/boxAuth it gives 404 error
how can i deeplink to this url using angular