然而mypp.appspot.com/about出错了。
我必须包含尾部斜杠
mypp.appspot.com/about/有什么方法可以解决这个问题吗?
例如:https://example.com/folder_name/sub_folderName/
am using this:
- url: /(.*)/?$
static_files: www/\1/index.html
upload: www/(.*)/index.html
答案 0 :(得分:0)
工作
- url: /about/?$
static_files: www/index.html
upload: www/(.*)
- url: /about/(.*?)/?$
static_files: www/\1/index.html
upload: www/(.*)/index.html