Welcome! Log In Create A New Profile

Advanced

Re: Redirect www to no-www with variable (for multiple domains)?

Edho Arief
July 08, 2013 12:50AM
On Sun, Jul 7, 2013 at 6:30 PM, lennart <nginx-forum@nginx.us> wrote:
>
> Is there a way to do this with regex or variables? I've ~15 domains and it
> would be more convenient to have only one entry "to rule them all" ;-)
>

the regex way, which is supposedly slower:

server {
server_name ~^www\.(?<domain>.+)$;
listen 80; listen [::]:80;
return 301 $scheme://$domain$request_uri;
}

--
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Redirect www to no-www with variable (for multiple domains)?

lennart July 07, 2013 05:30AM

Re: Redirect www to no-www with variable (for multiple domains)?

Jonathan Matthews July 07, 2013 07:44AM

Re: Redirect www to no-www with variable (for multiple domains)?

lennart July 07, 2013 08:22AM

Re: Redirect www to no-www with variable (for multiple domains)?

Sajan Parikh July 07, 2013 07:48AM

Re: Redirect www to no-www with variable (for multiple domains)?

Sajan Parikh July 07, 2013 02:48PM

Re: Redirect www to no-www with variable (for multiple domains)?

Edho Arief July 08, 2013 12:50AM

Re: Redirect www to no-www with variable (for multiple domains)?

lennart July 08, 2013 05:47PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 277
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready