如何编写static_files排除Google App Engine yaml中的一个子目录
在GAE中的app.yml中,我们使用正则表达式来匹配某种类型的url地址。
如果我想匹配路径中非特定字符串的子目录(不包括一个),我不知道如何编写正则表达式?
例如:
我想将 foo/bar/.* 作为静态文件上传排除 foo/bar/dir/.* 中的任何文件,如何在 app.yaml 中处理这个问题。
包含目录中的文件作为静态文件,例如:
foo/bar/main.css
foo/bar/js/main.js
排除目录中的文件(将这些文件用作应用程序模板),如下所示:
foo/bar/views/index.html
我需要此功能的原因是我有将模板文件与父文件中的静态文件混合。像 WordPress 主题模板文件。
谢谢。
With app.yml in GAE, we use regular expressions to match a certain type of url address.
If I want to match a subdirectory of the path which is not a particula string(exclude one ), I do not know how to write regular expression?
For example:
I want to upload foo/bar/.* as static files exclude any files in foo/bar/dir/.* , how to deal with this in app.yaml .
include files in dir as static files like :
foo/bar/main.css
foo/bar/js/main.js
exclude files in dir(to use these files as application templates) like this:
foo/bar/views/index.html
The reason why I need this function is that I have mixed templates file with static files in a parent file. like Wordpress theme templates file.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数人将所有静态文件保存在名为“public”或“static”的子目录中,以避免出现此问题,我建议您也这样做。
您可以添加一行来通过扩展名捕获文件,例如:
Most people keep all their static files in a subdirectory called "public" or "static" to avoid this issue, and I recommend you do the same.
You could add a line to catch your files by extension like: