Skip to content

Instantly share code, notes, and snippets.

@tobsn
Created May 28, 2014 14:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobsn/f6a301c441b67fe883b7 to your computer and use it in GitHub Desktop.
Save tobsn/f6a301c441b67fe883b7 to your computer and use it in GitHub Desktop.
nginx - sub_filter replace head with the current folder as base href for sub project folder structure
location / {
if ($uri ~* ^/([^.\?/]+)) {
set $foldername "$1";
}
sub_filter "<head>" "<head><base href=\"${scheme}://${host}/${foldername}/\">";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment