nginx如何重写或跳转8000端口到443

【字号: 日期:2022-07-08浏览:26作者:雯心

问题描述

例如把:

test.domain.com:8000/event/123

跳转到:

https://test.domain.com/event/123

问题解答

回答1:

在你8000的server配置里加上下面代码就行

rewrite ^/event/123 https://test.domain.com/event/123 permanent;回答2:

server { listen 8000; server_name test.domain.com; return 301 $scheme://test.domain.com$request_uri;}

相关文章: