需要配置thinkphp3.2公共配置文件config.php的URL模式,nginx rewrite配置重写规则。
配置thinkphp3.2,公共配置文件config.php的URL模式。
/* URL配置 */
'URL_CASE_INSENSITIVE' => true, //默认false 表示URL区分大小写 true则表示不区分大小写
'URL_MODEL' => 2, //URL模式
'VAR_URL_PARAMS' => '', // PATHINFO URL参数变量
'URL_PATHINFO_DEPR' => '/', //PATHINFO URL分割符
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
location /domainname/ {
if (!-e $request_filename){
rewrite ^/domainname/(.*)$ /domainname/index.php?s=$1 last;
}
}
转载注明:
感谢博主,喝杯咖啡~
感谢博主,喝杯咖啡~
还没有人发表评论