On Mon, Jan 08, 2024 at 02:22:14PM -0500, James Read wrote:

Hi there,

> how would I redirect https://example.com/oldname.php to
> http://example.com/newname.php

Within the https server{} block:

    location = /oldname.php { return 301 http://example.com/newname.php; }

should do it.

(Other 30x numbers can work too.)

Cheers,

        f
-- 
Francis Daly        fran...@daoine.org
_______________________________________________
nginx mailing list
nginx@nginx.org
https://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to