nginx 如何从 url 中提取 ip,然后重定向到该 ip?
How does nginx extract the ip from the url and then redirect to that ip?
例如:
http://www.example.com/127.0.0.1/abc/1
重定向到
http://127.0.0.1/abc/1
ip 127.0.0.1
是动态可变的
nginx配置文件怎么写
使用 RegEx,可以将模式分组在括号中并用数字引用
rewrite /([^/]+)(.*) http:// permanent;
例如:
http://www.example.com/127.0.0.1/abc/1
重定向到
http://127.0.0.1/abc/1
ip 127.0.0.1
是动态可变的
nginx配置文件怎么写
使用 RegEx,可以将模式分组在括号中并用数字引用
rewrite /([^/]+)(.*) http:// permanent;