Archive for November 2015

Yii routing SEO friendly route

To make the following url work: http://www.website.com/green-juice add the following rule to config/web.php ‘urlManager’ => [ ‘enablePrettyUrl’ => true, ‘showScriptName’ => false, ‘rules’ => [ ‘green-juice’=>’green/say’, ] ]

Yii routing enable human readable uri

Edit file config/web.php Add the following to the ‘components’ array: ‘components’ => [ ‘urlManager’ => [ ‘enablePrettyUrl’ => true, ‘showScriptName’ => false, ]