Yii routing enable human readable uri

Edit file config/web.php
Add the following to the ‘components’ array:

    'components' => [
        'urlManager' => [
            'enablePrettyUrl' => true,
            'showScriptName' => false,
        ]

Leave a Reply