nginx 如何配置 使web路径访问http192201211745070iocfullmain 重定向到http192201211745070iocV2fullmain
可以使用以下 nginx 配置:
server {
listen 45070;
server_name 192.201.2.117;
location /ioc/full/main {
return 301 http://192.201.2.117:45070/iocV2/full/main;
}
# 其他配置
}
这样当访问 http://192.201.2.117:45070/ioc/full/main 时,会被重定向到 http://192.201.2.117:45070/iocV2/full/main。
原文地址: https://www.cveoy.top/t/topic/edqu 著作权归作者所有。请勿转载和采集!