本文章主要介绍了Nginx将通过IP访问重定向,具有不错的的参考价值,希望对您有所帮助,如解说有误或未考虑完全的地方,请您留言指出,谢谢!
server {
listen 80 default_server;
server_name localhost;
location / {
rewrite ^ http://www.xxx.com/?from-xxx;
}
}
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/228328.html