问题与How do I make Angular 2 routing work with App Engine on page refresh?非常相似,但我没有足够的评论意见,并表示不会在答案中提出问题。
无论如何相同的问题,除了它是appspot上的静态托管网站,并使用了角度cli dist文件夹:
Project
|
+--dist
|
+--index.html
+--inline.js
+--inline.map
+--main.bundle.js
+--main.map
+--styles.bundle.js
+--styles.map
+--app.yaml
+--index.yaml
我尝试将我的app.yaml更改为与上面链接的Dan相似的内容,但无法解决问题?这是app.yaml文件:
application:
version:
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /(.*\.js)
static_files: dist/\1
upload: dist/(.*\.js)
- url: /(.*\.map)
mime_type: application/octet-stream
static_files: dist/\1
upload: dist/(.*\.map)
- url: /
static_files: dist/index.html
upload: dist/index.html
- url: /(.*)
static_files: dist/\1
upload: dist/(.*)
由于
答案 0 :(得分:6)
试试这个处理程序:
- url: /(.*\.(gif|png|jpg|css|js)(|\.map))$
static_files: dist/\1
upload: dist/(.*)(|\.map)
- url: /(.*)
static_files: dist/index.html
upload: dist/index.html
如果您的应用使用更多,请在第一个处理程序中添加文件扩展名。
适用于我的应用...
答案 1 :(得分:0)
似乎你需要编写AppEngine脚本。检查this link,似乎这就是你所需要的。