26 lines
877 B
Plaintext
26 lines
877 B
Plaintext
rewrite ^/prd-(.*)-(.*).html /api/platform.php?s=Platform.PRD_PRD.Jump&id=$2&ak=$1 last; # prd jump
|
|
rewrite ^/url-(.*)-(.*).html /api/platform.php?s=Platform.Urls.Jump&id=$2&ak=$1 last; # url jump
|
|
|
|
|
|
|
|
# ???????
|
|
if (!-e $request_filename) {
|
|
rewrite ^/admin/(.*) /admin/index.html;
|
|
}
|
|
|
|
if (!-e $request_filename) {
|
|
rewrite ^/platform/(.*) /platform/index.html;
|
|
}
|
|
#??????????
|
|
if (!-e $request_filename) {
|
|
rewrite ^/m/(.*) /m/index.html;
|
|
}
|
|
#???????????????-----??????3????????id, ???????,??????
|
|
if ($request_uri ~* checkjump$) {
|
|
rewrite ^/(.*)$ /api/platform.php?s=Platform.MiddleJump_MiddleJump.CopyJump&id=$arg_id&jump_key=$arg_jump_key redirect;
|
|
|
|
# rewrite ^/(.*)$ /host/$arg_projectDetaid permanent;
|
|
}
|
|
|
|
|