If I have route a/b/c, how could I alias x/y to it? Example: ``` this.route('a', function() { this.route('b', function() { this.route('c'); }); }); this.route('x', function() { this.alias('y', '/y', ?); }); ```