Best tomcat team, Hereby I have a question about an issue I found by using RewriteValve on tomcat 9.30
The rewrite.config is very simple: *RewriteCond %{HTTP_HOST} =youkoop.com <http://youkoop.com>RewriteRule ^.*$ https://www.youkoop.com <https://www.youkoop.com> [R=301,L]* All I want is just redirect a naked root domain to a www domain with HTTPS. The redirection works on HTTP but not HTTPS. http://youkoop.com => https://www.youkoop.com *works* [image: image.png] *https*://youkoop.com => https://www.youkoop.com *does not work* [image: image.png] I believe that there is something wrong with RewriteValve, or probably related to he new sslhostconfig element, which is introduced from 8.5, because the same rule works before on tomcat 8.0. Best regards, Hua P.S. I originally make a bug report here: https://bz.apache.org/bugzilla/show_bug.cgi?id=64112