Hello. Can you please tell me how to remove the id from the address bar? What would have been wrong, http://poll.ua/gonki/gonki-na-dronah/16 , and here it is http://poll.ua/gonki/gonki-na-dronah . In URLmanager in rules, I have the following:
'<slug>/<slug1>/<poll_id:\d+>' => 'site/competition/', And I select articles via poll_id:
public function actionCompetition($poll_id) { $comp = ACompetition::findOne($poll_id); return $this->render('competition', [ 'comp' => $comp, ]; }