Welcome! Log In Create A New Profile

Advanced

Re: Nginx redirection

Aleksandar Lazic
May 23, 2018 11:02AM
Hi.

On 16/05/2018 02:22, Enrico wrote:
>Hi,
>
>I have a nginx server (called mynginxserver) and need to redirect some
>urls
>:
>
>I want to have all url with the string tso:
>
>http://www.mynginxserver.com/XXXXXXtsoXXXXX
>
>redirected to
>
>https://myserver.com/XXXXXXtsoXXXXX
>
>if the string tso is in the url and redirect to
>
>http://www.mynottsoserver.com/XXXXXXXXXXX
>
>if the string tso is not present.
>
> XXXXXXtsoXXXXX and XXXXXXXXXXX must be keep.
> The string "tso" can ben anywhere in the last parameter (tsoXXXXX,
>XtsoXXXX, XXXXtso, etc.)
>
>I think i need to use the location and rewrite directive but don't know how
>to do that.
>
>Thanks for your help

Please can you take a look into this documents.

https://nginx.org/en/docs/http/request_processing.html
https://nginx.org/en/docs/http/ngx_http_core_module.html#location
https://nginx.org/en/docs/varindex.html

I suggest two locations like this,untested.

```
location ~ tso {
return 302 https://myserver.com/$uri
}

location / {
return 302 https://www.mynottsoserver.com/$uri
}

```

Regards
Aleks

>Posted at Nginx Forum: https://forum.nginx.org/read.php?2,279813,279813#msg-279813
>
>_______________________________________________
>nginx mailing list
>nginx@nginx.org
>http://mailman.nginx.org/mailman/listinfo/nginx
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Nginx redirection

Enrico May 16, 2018 02:22AM

Re: Nginx redirection

Aleksandar Lazic May 23, 2018 11:02AM

Re: Nginx redirection

Enrico June 14, 2018 09:27AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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