UrlManager hides id - Yii2

this is my urlManager in config / web.php

'urlManager' => [ 'enablePrettyUrl' => true, 'rules' => [ '' => 'site/index', '/<naslovcic:.*?>' => 'site/blog-post', '<alias:kundennutzen|berater|garantie|leistungen|impressum|referenzen|blog|kontakt>' => 'site/<alias>', ] ], 

Is there any possible way to hide the id from my url? So, for example, now this is http: // localhost / 17 / my-new-blog-post And I want this as http: // localhost / my-new-blog-post

+4
source share

All Articles