我想将静态资源以外的任何链接(例如 js、图像等)指向我的 index.html。我做了以下更改。
我添加了一个context.xml
inapp.war/META-INF
目录,其中包含:
<Context>
<Valve className="org.apache.catalina.valves.rewrite.RewriteValve" />
</Context>
我rewrite.config
的app.war/WEB-INF
目录中也包含:
RewriteCond %{REQUEST_URI} ^/(css|img|js|partials|rest|favicon).*$
RewriteRule ^.*$ - [L]
RewriteRule ^.*$ /index.html [L,QSA]
但是,通过上述设置,我的所有 js 和 css 文件都会显示index.html
内容(在浏览器控制台中)。你能建议这里有什么问题吗?