- URL模式 配置成-->REWRITE模式
'URL_MODEL' => 2,
'URL_CASE_INSENSITIVE' => true,//不区分大小写
2.参考链接http://document.thinkphp.cn/manual_3_2.html#url_rewrite
Nginx环境
location / { // …..省略部分代码
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}