BCS Yii2 Pretty URL's
To achieve SEO friendly URL’s for the Yii2 framework can be challenging. Below you will find an example that works for my Yii 2 application. [codesyntax lang=”php”] ‘urlManager’ => [ ‘enablePrettyUrl’ => true, ‘showScriptName’ => false, ‘rules’ => [ ‘<alias:\w+>’ => ‘site/<alias>’, ‘/’ => ‘site/index’, ‘login’ => ‘site/login’, ‘<controller:\w+>/<id:\d+>’ => ‘<controller>/view’, ‘<controller:\w+>/<action:\w+>/<id:\d+>’ => ‘<controller>/<action>’, ‘<controller:\w+>/<action:\w+>’ […]