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
Related Q & A:
- How to rewrite URL in HTTPS?Best solution by Server Fault
- How to rewrite URL using htaccess?Best solution by Stack Overflow
- How to rewrite a URL using htaccess?Best solution by Stack Overflow
- How to Rewrite URL in htaccess with php?Best solution by Stack Overflow
- How to rewrite dynamic URL?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.