Welcome! Log In Create A New Profile

Advanced

Re: How to generate url with sub domain to new url with query string?

June 22, 2009 08:52AM
On Mon, Jun 22, 2009 at 12:37 PM, leakhina<nginx-forum@nginx.us> wrote:
> Hi everyone,
>
> I'm very new with Nginx, and now I want to use Nginx to generate new url from the url user passed.
> Example:
> User type to browser like http://us.domain.com, and I want Nginx generates to http://www.domain.com/?portal=us or http://domain.com/?portal=us.
>
> How can I rewrite the nginx to do this?
>
> Best regards,
> Leakhina
>
> Posted at Nginx Forum: http://forum.nginx.org/read.php?2,3235,3235#msg-3235
>
>
>

maybe something like this

server {
listen 80;
server_name ~(.*)\.domain\.com;
set $loc $1;
rewrite ^.* http://domain.com$request_uri?portal=$loc;
}

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

How to generate url with sub domain to new url with query string?

leakhina June 22, 2009 01:37AM

Re: How to generate url with sub domain to new url with query string?

Igor Sysoev June 22, 2009 05:39AM

Re: How to generate url with sub domain to new url with query string?

leakhina June 22, 2009 06:22AM

Re: How to generate url with sub domain to new url with query string?

edogawaconan June 22, 2009 08:52AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 307
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