Skip to content

Instantly share code, notes, and snippets.

@lukespragg
Created May 14, 2014 23:09
Show Gist options
  • Save lukespragg/7439e0c7895f64625b72 to your computer and use it in GitHub Desktop.
Save lukespragg/7439e0c7895f64625b72 to your computer and use it in GitHub Desktop.
Vanilla Forums traditional layout rewrites for NGINX
# Vanilla Forums: traditional vs flat
location = /discussions {
rewrite ^ $scheme://$server_name permanent;
}
location = /discussions/ {
rewrite ^ $scheme://$server_name permanent;
}
location = /categories/discussions {
rewrite ^ $scheme://$server_name permanent;
}
location = /categories/discussions/ {
rewrite ^ $scheme://$server_name permanent;
}
location = /vanilla/discussions {
rewrite ^ $scheme://$server_name permanent;
}
location = /vanilla/discussions/ {
rewrite ^ $scheme://$server_name permanent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment