1

我的 Ember 应用程序位于example.com/path/to/ember_app.

我的问题是 Ember 似乎是基于站点根目录而不是应用程序的根目录来生根的,所以当我希望 ember 植根时:

example.com/path/to/ember_app/**news_items**

500 (Internal Server Error)example.com/news_items.

4

1 回答 1

1
MyApp.IndexRoute = Ember.Route.extend({
  redirect: function() {        
    this.transitionTo('example.path');
  }
});

这应该对您有所帮助,这基本上会将您的应用程序的索引路由重定向到 example.path 路由。

于 2013-03-22T12:41:34.277 回答