在tomcat 9中,server.xml我在
中添加了以下内容 <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Valve className="org.apache.catalina.valves.rewrite.RewriteValve" />
</Host>
然后在\ conf \ Catalina \ localhost \ rewrite.config中
我有以下规则:
RewriteRule ^/html/(.*) $1 [L]
我正在将https://www.ourwebsite.com/html/ *之类的内容重定向到https://www.ourwebsite.com/ *
但是它不起作用