我有一个像这样的文章网址的博客http://ali.dj/blog/unlimited-fps-in-unity-editor
我的旧博客有这样的网址:http://ali.dj/blog/unlimited-fps-in-unity-editor/comment-page1
等。
当文章有效但后面的所有内容都是不必要的时候我想删除网址后面的部分和参数。
这http://ali.dj/blog/unlimited-fps-in-unity-editor/comment-page1
或此http://ali.dj/blog/unlimited-fps-in-unity-editor/comment-page1?ref=foo
成为http://ali.dj/blog/unlimited-fps-in-unity-editor
目前我有一条全能路线,将用户重定向到错误页面
如何删除不必要的部分?
以下是我目前用于文章的router.js
:
this.route('blog', { 'path' : 'blog/'}, function() {
this.route('post', { 'path' : ':permalink' })
this.route('not-found', { 'path' : 'not-found'})
});
// Error routes
this.route('not-found', { path : '/not-found'})
this.route('catch-all', { path : '/*path'}) // redirects to not-found