如何在app yaml中的url末尾添加尾部斜杠

时间:2018-04-09 07:26:18

标签: regex app.yaml

然而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

1 个答案:

答案 0 :(得分:0)

  

工作

References

- url: /about/?$
      static_files: www/index.html
      upload: www/(.*)



    - url: /about/(.*?)/?$
      static_files: www/\1/index.html
      upload: www/(.*)/index.html