我正在尝试重定向 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
任何帮助将非常感激!