Skip to content

Instantly share code, notes, and snippets.

@jameswritescode
Last active October 25, 2017 21:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jameswritescode/a7e50f6c76308828235d5696f0ac3fe7 to your computer and use it in GitHub Desktop.
Save jameswritescode/a7e50f6c76308828235d5696f0ac3fe7 to your computer and use it in GitHub Desktop.
server {
listen [::]:80;
listen 80;
server_name ~^(?<sub>[\w\-]+)\.domainhere\.com$;
rewrite ^/en/(.*)$ $1 last;
return 301 $scheme://domainhere.com/$sub$request_uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment