nginx 把以/platform/#/home开头的路径https://wx.mycommunity.cn:8443/platform/#/home重定向到https://community.doorwx-fjhz.com:8443/platform/#/home
时间: 2023-08-12 16:07:16 浏览: 82
nginx目录路径重定向的方法
您可以在nginx的配置文件中添加以下代码实现重定向:
```
server {
listen 8443 ssl;
server_name wx.mycommunity.cn;
ssl_certificate /path/to/ssl/certificate;
ssl_certificate_key /path/to/ssl/key;
location /platform/#/home {
rewrite ^/platform/#/home(.*)$ https://community.doorwx-fjhz.com:8443/platform/#/home$1 permanent;
}
}
```
这将把所有以`/platform/#/home`开头的请求重定向到`https://community.doorwx-fjhz.com:8443/platform/#/home`。请确保替换您自己的SSL证书路径。
阅读全文