I am building a simple angular app, below is the sample code of my app.js it is working fine, the url is coming as "http://localhost:58539/#/" which is as expected, but i want the application name to be append "MyApp" like, "http://localhost:58539/MyApp/#/", i am not getting a way to do that,
angular.module('AngularApp', [
'ngRoute'
])
.config(['$routeProvider', '$httpProvider',
function($routeProvider, $httpProvider) {
"use strict";
$routeProvider
.when('/', {
controller: 'HomeController',
controllerAs: 'ctrl',
templateUrl: '/app/views/home.html'
})
.when('/home', {
controller: 'HomeController',
controllerAs: 'ctrl',
templateUrl: '/app/views/home.html'
})
.when('/detail', {
templateUrl: '/app/views/detail.html'
})