我有一个棘手的案例。我想在少数情况下总是重定向。当我请求 www.myWebsite.com/toto.png 时,我想看到“toto.png”,而且当我请求 www.myWebsite.com/titi 或 www.myWebsite.com/TITI 时也想看到。在所有其他情况下,我想重定向到 www.anotherWebsite.com/。
这里我当前的配置不起作用:/
www.myWebsite.com{
tls server@myWebsite.com
root /var/www/html/
rewrite / /anotherWebsite
rewrite /titi /toto.png
redir /anotherWebsite https://www.anotherWebsite.com/
}