怎样把localhost/index.php?r=user变为localhost/user
1.修改backend/config/main.php,在components数组中增加
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName'=> false,
'rules' => [
'<controller:w+>/<id:d+>' => '<controller>/view',
'<controller:w+>/<action:w+>/<id:d+>' => '<controller>/<action>',
'<controller:w+>/<action:w+>' => '<controller>/<action>',
['class' => 'yii
estUrlRule', 'controller' => ['user', 'news']],
],
],
2.在backend/web/下增加.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php