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', ] ] |