我在数据库中有一个页面。我希望页面有mysite.com/page_alias
这样的网址。
如何在laravel 4中正确写入路由。
在kohana我这样做了:
Route::set('static', '<page>', array('page' => "page|page2|page3|etc"))
->defaults(array(
'action' => 'index',
'controller' => 'Static',
'directory' => 'Index',
));
感谢。
抱歉我的英文。
答案 0 :(得分:0)
我从不使用Kohana,但是看看它的文档,如果我是对的,这是你做Kohana以往的最接近的方式。
Route::get('{page}', 'StaticController@index')->where('page', 'page|page2|page3|etc');
PS:看看这个http://laravel.com/docs/4.2/routing(您可能已经检查了文档但是以防万一..)