每当你建立
用它构建
ng build --base-href .
这将解决您的问题#1和#2
对于问题3
这样的SO Post将在tomcat Apache8.5.4中工作角度html5mode,在页面刷新上给出404
- 添加在/opt/tomcat/conf/context.xml中
<!-- REWRITE VALVE --> <ValveclassName="org.apache.catalina.valves.rewrite.Rewritevalve" /> <!-- // -->
- 在特定项目WEB-INF文件夹中添加rewite.config文件,其内容如下。在/opt/tomcat/webapps/projectName/WEB-INF/rewrite.config上
RewriteCond %{REQUEST_URI} !^.*.(bmp|css|gif|htc|html?|ico|jpe?g|js|pdf|png|swf|txt|xml|svg|eot|woff|woff2|ttf|map)$ RewriteRule ^(.*)$ /index.html [L]
,此 *** 作是针对每个重定向到index.html的路由请求
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)