怎么默认访问主页的时候不要显示这段,如: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('/');
});
1
clijiac 2016-01-27 12:10:51 +08:00
你这个用的是 ui-router 吧 ,没用过
看看这个 http://bubkoo.com/2014/01/02/angular/ui-router/guide/url-routing/ |
3
aivier 2016-01-27 12:16:40 +08:00 1
这是 WebStorm 的调试地址,那上面的是你自己的项目文件夹路径吧,去不掉,你换个 Nginx 应该就没有了
|
4
bdbai 2016-01-27 12:24:41 +08:00 via iPhone
同楼上, router 换的是路径后面的部分,前面归服务器管。
|