我的文件夹结构,
public---|
|-index.html
|-static-|
|-static.html
当我将项目作为localhost:4000运行时,它指向公共文件夹并加载了index.html但现在我想加载staic.html 我键入localhost:4000 / static但仍然加载index.html任何人都可以帮助我。谢谢。提前感谢。
答案 0 :(得分:0)
Apache的解决方法
更改Apache配置。
将此配置元素添加到VHost:
<Directory /static/>
DirectoryIndex static.html
</Directory>
答案 1 :(得分:0)
请检查您的角度路由情况,如果您的“when”子句指向“/”作为模板,则会发生这种情况。
.when("/", {
templateUrl : "/"
})