Javascript being loaded twice after enabling rewri

2019-09-20 06:48发布

I have a single page application, and I am using the tomcat rewrite valve to forward all the requests other than static resources to my index.html. Following are the contents of my rewrite.config:

RewriteCond %{REQUEST_URI} (?!.*\.(?:jpg|png|css|js|json|scss|map)$).*$
RewriteRule ^.*$ /index.html [L,QSA]

After getting the rewrite to work, I am seeing that my jQuery library, and other javascript files are loading twice. This is causing the application to break. Could someone point out what could be the potential root cause of this issue?

1条回答
劳资没心,怎么记你
2楼-- · 2019-09-20 07:22

I found out the issue using this answer: link The issue was that I was missing some of the file tags. My final rewrite rule looks like this:

RewriteCond %{REQUEST_URI} (?!.*\.(?:jpg|png|css|js|json|htm|scss|map|svg|html|favicon\.ico)$).*$
RewriteRule ^.*$ /index.html [L,QSA]
查看更多
登录 后发表回答