nginx 把以/platform/#/home开头的路径https://wx.mycommunity.cn:8443/platform/#/home重定向到https://community.doorwx-fjhz.com:8443/platform/#/home
时间: 2023-08-12 14:07:16 浏览: 134
你的问题是关于Nginx的路径重定向。如果你想把以/platform/#/home开头的路径https://wx.mycommunity.cn:8443/platform/#/home重定向到https://community.doorwx-fjhz.com:8443/platform/#/home,你可以在Nginx的配置文件中添加以下代码:
```
server {
listen 8443;
server_name wx.mycommunity.cn;
location /platform/#/home {
return 301 https://community.doorwx-fjhz.com$request_uri;
}
}
```
这个配置会将所有以/platform/#/home开头的请求重定向到https://community.doorwx-fjhz.com:8443/platform/#/home。请注意,这里使用了301重定向,这意味着搜索引擎会将原来的URL替换为新的URL,所以请谨慎使用。
相关问题
nginx https://wx.mycommunity.cn:8443/platform/#/home重定向到https://community.doorwx-fjhz.com:8443/platform/#/home
您可以尝试在nginx的配置文件中添加以下代码实现重定向:
```
server {
listen 8443 ssl;
server_name wx.mycommunity.cn;
ssl_certificate /path/to/ssl/certificate;
ssl_certificate_key /path/to/ssl/key;
rewrite ^/platform/(.*)$ https://community.doorwx-fjhz.com:8443/platform/$1 permanent;
}
```
这将将https://wx.mycommunity.cn:8443/platform/#/home 重定向到 https://community.doorwx-fjhz.com:8443/platform/#/home。请确保替换您自己的SSL证书路径。
nginx 根据路径https://wx.mycommunity.cn:8443/platform/#/home重定向到https://community.doorwx-fjhz.com:8443/platform/#/home
您可以在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/ {
rewrite ^/platform/(.*)$ https://community.doorwx-fjhz.com:8443/platform/$1 permanent;
}
}
```
这将把所有以`/platform/`开头的请求重定向到`https://community.doorwx-fjhz.com:8443/platform/`。请确保替换您自己的SSL证书路径。
阅读全文