Hi,
how would I redirect https://example.com/oldname.php to
http://example.com/newname.php
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20240108/b6969e1e/attachment.htm>
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 francis at daoine.org