我已经生成了一条'home'路线,我想将我的基本网址'/'更改为'home'我尝试将这行代码添加到router.js
App.Router.reopen({
rootURL: '/blog/'
});
我也尝试将config / environment.js中的base-url设置为'/ home /'
答案 0 :(得分:5)
// app/routes/application.js
export default Ember.Route.extend({
redirect: function () {
this.transitionTo('home');
}
});
// router.js
Router.map(function() {
this.route('home', { path: '/home' });
});