如何在默认根' /'中更改ember cli中的base / root url?到' / home'?

时间:2015-01-24 07:11:44

标签: ember.js ember-cli

我已经生成了一条'home'路线,我想将我的基本网址'/'更改为'home'我尝试将这行代码添加到router.js

App.Router.reopen({
  rootURL: '/blog/'
});

我也尝试将config / environment.js中的base-url设置为'/ home /'

1 个答案:

答案 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' });
});