目录重定向
location / {
rewrite ^/data /data/data.php last; //单独针对文件夹名称指向文件
rewrite ^/list /list/list.php last;
}
全部重定向
location / {
if (!-e $request_filename){
rewrite ^/(.*) /index.html last; //重定向域名后所有目录到index.html文件
}
}