THINKCMF-Nginx伪静态规则

452 阅读1分钟

必要条件:域名绑到Public文件夹上

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