Yii在Nginx下的rewrite配置
今天配置nginx后首页显示正常,点击链接就报404错误,只是知道在apache下只要开启重定向模块,再nginx下加上如下配置即可:
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( ‘/‘=>‘/view‘, ‘//‘=>‘/‘, ‘/‘=>‘/‘, ), ),
原文地址:http://blog.csdn.net/hzlphp/article/details/25070143