技术文摘

设计,技术,行业

ThinkCMF在Nginx下url的重写配置

location / {
    if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;   break;
    }
}
  location ~ /.*\.php/ {
    rewrite ^(.*?/?)(.*\.php)(.*)$ /$2?s=$3 last;
    break;
  }