我正在尝试重定向Zeus服务器上的整个网站。我只是设法成功重定向主页。其他页面提出“找不到页面”。这是我使用的代码:
match URL into $ with ^\/$
if matched
set OUT:Location = http://www.mentalhealthreform.ie/
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
goto END
endif
非常感谢任何帮助!
答案 0 :(得分:0)
您可能想尝试:
RULE_0_START:
match IN:Host into $ with currentsite\.co\.uk$
if matched then
match URL into $ with ^/(.*)$
set OUT:Location = http://www.newsite.com/$1
set OUT:Content-Type = text/html
set RESPONSE = 301
set BODY = Moved
goto END
endif
RULE_0_END:
这应匹配当前网站上的网页请求并附加到新网页上。我们的服务器现在使用Apache,但我确实记得使用Zeus做事的困难。