You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

5 lines
359 B

#nginx服务器伪静态配置文件,注意:如果蓝天采集器安装在子目录中,请将“子目录”替换为相应目录的名称,否则删除文字“/子目录”
if (!-e $request_filename) {
rewrite ^/子目录/app/(\w+)/(.*)$ /子目录/app/$1/index.php?s=/$2 last;
rewrite ^/子目录/(.*)$ /子目录/index.php?s=/$1 last;
}