开发者

using kohana url rewrite

开发者 https://www.devze.com 2023-02-12 06:05 出处:网络
I know that kohana inteprets the url like /controller/method/variable/etc.. is there a way to make it intepret it as开发者_如何学运维

I know that kohana inteprets the url like

/controller/method/variable/etc..

is there a way to make it intepret it as

开发者_如何学运维
/variable/controller/method/etc..


Change the default route to this in your bootstrap.php:

Route::set('default', '(<variable>/<controller>(/<action>(/<id>)))')
->defaults(array(
    'controller' => 'main',
    'action'     => 'index',
));
0

精彩评论

暂无评论...
验证码 换一张
取 消