awesome-front-end
awesome-front-end copied to clipboard
nginx
判断文件是否存在
if (-e "${document_root}/static${uri}") {
rewrite ^/(.*)$ /static/$uri break;
}
if (-e $request_filename) {
break;
}
set $static "/static";
try_files $static$uri $static$uri/index.html /index.php;
location ~* ^/assets/(.*)$ {
rewrite_log on;
set $sub_path $1;
try_files $uri /react-module-dev/assets/$sub_path;
}