Created
May 14, 2014 23:09
-
-
Save lukespragg/7439e0c7895f64625b72 to your computer and use it in GitHub Desktop.
Vanilla Forums traditional layout rewrites for NGINX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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