PHP7中文手册2018 带注释 最新chm版
1. Nginx配置
在nginx.conf的server {段添加类似如下代码:
Nginx.conf代码
-
location / {
-
if (!-e $request_filename){
-
rewrite ^/(.*) /index.php last;
-
}
-
}
2. 在Yii的protected/conf/main.php去掉如下的注释
Php代码
-
'urlManager'=>array(
-
'urlFormat'=>'path',
-
'rules'=>array(
-
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
-
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
-
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
-
),
-
,
转载请注明:谷谷点程序 » yii在nginx环境下配置rewrite模块