我希望将所有流量转移到任意域名,我们称之为www.example.com,将其重新编写到www.google.com,以便在我点击http://www.example.com/search?q=haproxy时不会产生404这甚至可能吗?
这是我的.cfg文件的内容:
global
defaults
mode http
timeout connect 5000ms
timeout client 5000ms
timeout server 5000ms
frontend http-in
bind *:80
default_backend my_backend
reqrep ^([^\ :]*)\ /\d+/(.+)/? \1\ /\2
backend my_backend
server forwardsvr www.google.com:80 check
提前感谢您的帮助!