IT博客汇
首页
精华
技术
设计
资讯
扯淡
权利声明
登录
注册
nginx中解决pathinfo问题
发表于
2013-06-18 20:25:17
love
0
`
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php/$1 last;
break;
}
}