Kohana 3 - rota "/ post / YYYY / AA / GG / arama-motoru-optimize-url" benzeri Blog

1 Cevap php

I'm trying to create the above mentioned route... year, month, day and title should be passed to the method.

Bunun nasıl olduğunu biliyor musun?

Şimdiden teşekkürler!

1 Cevap

Sen ek bir rota oluşturmanız gerekiyor application/bootstrap.php:

Route::set('post', 'post/<year>/<month>/<day>/<title>', array('year'=>'\d{4}', 'month'=>'\d{2}', 'day'=>'\d{2}'))
    ->defaults(array(
            'controller' => 'post',
            'action'     => 'index',
));

Sonra denetleyicisi (bu örnekte, Controller_Post) içinde, bu yöntemi koymak:

public function action_index($year, $month, $day, $title){
       //Your code here
}