我正在使用AngularJS作为我的前端Web框架,并且想知道如何更改我的状态的路由,以便当我访问我的网站时,它会说(例如)abc.com而不是abc.com /家。我使用StateProvider在视图之间切换,这是默认的主页
state('home', {
url: '/home',
templateUrl: 'pages/home.html',
}).
$urlRouterProvider.otherwise('/home');
我在index.html中有这个
<div ui-view></div>
我想将我的主页内容保存在与index.html不同的文件中,但始终不显示该网址,因此每当我使用该网站时,我都不会看到“/ home”。我怎么能这样做?
答案 0 :(得分:2)
state('home', {
url: '/',
templateUrl: 'pages/home.html',
})
$urlRouterProvider.otherwise('/');
答案 1 :(得分:0)
您需要将路线定义中的网址更改为/
,而不是/home
。