标签: nginx
在Apache
rewriterule acution(.*)$ xyz.com$1 [P]
由于[P]标志用户将只获得原始IP或域。
[P]
在Nginx中
rewrite acution(.*)$ http://xyz.com$1;
现在我想做同样的事情设置代理标记[P],以便用户只获取原始域名而不是http://xyz.com。
请指导如何实现同样的目标。