在 App Engine 中处理 URL
我希望在请求以“.aspx”结尾的 URL 时调用特定的处理程序“/OldVideos”。
如何将其放入 app.yaml 文件中?
谢谢!
I want a particular handler "/OldVideos" to be invoked when URLs which end with ".aspx" are requested for.
How do I fit this in the app.yaml file?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
URL 和文件路径模式使用正则表达式语法。因此,您可以为以
.aspx
结尾的路径编写正则表达式,例如http://code.google.com/appengine/docs/python/config/appconfig.html#About_app_yaml
URL and file path patterns use Regular Expression syntax. So, you can write a regular expression for paths ending with
.aspx
such ashttp://code.google.com/appengine/docs/python/config/appconfig.html#About_app_yaml