How to rewrite the URL in Yii2?

Yii2 custom rewrite url

  • I create small site with Yii2 basic, and I have problem, I search every times and not resolved this, I try rewrite with .htaccess file but not success. My site have more category get from database example: house-building, car, job, computer, travel..... I would like user click on category example: http://example.com/house-building => it access category/index?category=house-building Current, my config/web.php as bellow. 'urlManager' => [ 'class' => 'yii\web\UrlManager', // Disable index.php 'showScriptName' => false, // Disable r= routes 'enablePrettyUrl' => true, #'suffix'=>'.html', 'rules' => array( ''=>'site/index', '/login.html'=>'/users/login', '/register.html'=>'/users/create', ### End custom url '<controller:\w+>/<id:\d+>' => '<controller>/view', '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>', '<controller:\w+>/<action:\w+>' => '<controller>/<action>', ), ], Can you help me resolved this issues. Thanks you.

  • Answer:

    Use this rule: '<category:\w+>' => 'category/index'

Nguyễn Thành Bồi at Stack Overflow Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.