Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出于特定的内部目的,我想将人们送回他们自己机器上的 url,我该怎么做呢?我真的做不到
server { server_name www.yayaya.com; rewrite ^(.*) localhost:3000$1 permanent; }
因为那将指向服务器的本地主机,对吗?
它要么在服务器上进行查找并将“localhost”转换为“127.0.0.1”,要么将“localhost”交给客户端,客户端仍将其转换为“127.0.0.1”
所以无论哪种方式,客户端都应该重定向到 127.0.0.1,这应该是正确的。
我不是 nginx 方面的专家,但我不明白为什么你的例子不起作用。