Welcome! Log In Create A New Profile

Advanced

Re: 301 redirect

Ian
February 14, 2015 05:20PM
On 14/02/2015 21:57, JACK LINKERS wrote:
> Hello,
>
> I need to redirect some URLs after redesigning my website.
> I use a 301 redirect for HTTP to HTTPS protocole :
>
> if ($scheme = "http") {
> return 301 https://$server_name$request_uri;
> }
>
> But how do I redirect URLs that have been changed ?
> ie. https://mywebsite.com/oldname.html to
> https://mywebsite.com/newname.html
>
> I did try
>
> if ( $request_filename ~ oldname.html/ ) {
> rewrite ^ https://mywebsite.com/newname.html/? permanent;
> }
>
> But this doesn't work.
>
> My website is hosted on a server with Direct Admin runing on a CentOS
> with Nginx as webserver. Don't know if it helps.
>
> Thanks in advance for help
>
Hi Jack,

I'm no nginx expert, but I think you should use location instead of if,
its faster and less prone to create other errors.
I think you can also use 301 redirects.

I would proceed to set up lots of location clauses thus:

location = /oldurl$ {
return 301 https://$server_name/newurl;
}

Hope this works for you

Ian

--
Ian Hobson
Mid Auchentiber, Auchentiber, Kilwinning, North Ayrshire KA13 7RR
Tel: 0203 287 1392
Preparing eBooks for Kindle and ePub formats to give the best reader experience.

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

301 redirect

shiroweb February 14, 2015 04:58PM

Re: 301 redirect

Ian February 14, 2015 05:20PM

Re: 301 redirect

Francis Daly February 14, 2015 05:24PM

Re: 301 redirect

shiroweb February 14, 2015 05:32PM

Re: 301 redirect

Francis Daly February 14, 2015 05:40PM

Re: 301 redirect

shiroweb February 14, 2015 05:42PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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