怎么默认访问主页的时候不要显示这段,如:http://localhost:63342/mulan-angular/client/src/
//设置路由
myApp.config(function ($stateProvider,$urlRouterProvider,$locationProvider) {
//去掉路由中的[#]
$locationProvider.html5Mode({
enabled: true,
requireBase: false});
$stateProvider
.state('home',{
url:"/",
templateUrl:"mulan-angular/client/src/index.html",
});
// $urlRouterProvider.otherwise('/');
});
