Guest User

www non-www

a guest
Oct 27th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.14 KB | None | 0 0
  1. server {
  2.    #...
  3. if ($host ~* www\.(.*)) {
  4. set $host_without_www $1;
  5. rewrite ^(.*)$ http://$host_without_www$1 permanent;
  6. }
  7.    #...
  8. }
Add Comment
Please, Sign In to add comment