location /zazzle {
index index.php;
rewrite ^/zazzle/(.*)+$ /zazzle/index.php?$1; # it finally works
# return 200 $request_uri; # it is for inspect what $request_uri is
# try_files $uri $uri/ /blog/index.php$request_uri$is_args$args; # it gets 500 server error
index index.php;
rewrite ^/zazzle/(.*)+$ /zazzle/index.php?$1; # it finally works
# return 200 $request_uri; # it is for inspect what $request_uri is
# try_files $uri $uri/ /blog/index.php$request_uri$is_args$args; # it gets 500 server error
}
把其中的zazzle,替换成你想要重写url的子目录即可