Skip to content

Instantly share code, notes, and snippets.

@ccbikai
Created November 8, 2013 12:17
Show Gist options
  • Save ccbikai/7370252 to your computer and use it in GitHub Desktop.
Save ccbikai/7370252 to your computer and use it in GitHub Desktop.
nginx 泛域名301转发 核心代码
if ($host ~* ^(.*)\.nju\.pt\/^(*)) {
set $sub_name $1;
set $path $2;
rewrite ^(.*) http://$sub_name.njupt.edu.cn$path permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment