如何使用 Google App Engine 重定向所有 URL

问题描述 投票:0回答:7

如何配置

app.yaml
文件将所有 URL 重定向到另一个 URL?例如,我希望
http://example.appspot.com/hello
http://example.appspot.com/hello28928723
重定向到
http://example.com

我目前只提供静态文件。这是我的

app.yaml
文件:

application: testapp
version: 1
runtime: python
api_version: 1

handlers:
- url: (.*)/
  static_files: static\1/index.html
  upload: static/index.html

- url: /
  static_dir: static
google-app-engine yaml
7个回答
40
投票

Webapp2 有一个内置的重定向处理程序

无需推出自己的处理程序; webapp2 已经自带了一个。

application = webapp2.WSGIApplication([
    webapp2.Route('/hello', webapp2.RedirectHandler, defaults={'_uri':'http://example.com'}),
    webapp2.Route('/hello28928723', webapp2.RedirectHandler, defaults={'_uri':'http://example.com'}),
], debug=False)

_uri 参数是 RedirectHandler 类用来定义目标的参数。我花了很多时间谷歌才找到这方面的文档,但它在我的应用程序中完美运行。

我假设您已经意识到这一点,但您需要更改您的包罗万象的路线:

- url: /
  static_dir: static

致(python27版本):

- url: /.*
  script: main.application

或者:(python27 之前的版本)

- url: /.*
  script: main.py

main.py
是包含请求处理程序+路由的文件。

注意:由于静态文件的性质,没有纯静态的方法来处理 GAE 上的重定向。基本上,无法单独在

app.yaml
中进行重定向。


9
投票

您需要的一切(替换

app-id
http://example.com
):

  • app.yaml
    :

    application: app-id
    version: 1
    runtime: python27
    api_version: 1
    threadsafe: false
    
    handlers:
    - url: /.*
      script: main.py
    
  • main.py
    :

    from google.appengine.ext import webapp
    from google.appengine.ext.webapp.util import run_wsgi_app
    
    class AllHandler(webapp.RequestHandler):
        def get(self):
            self.redirect("http://example.com", True)
    
    application = webapp.WSGIApplication([('/.*', AllHandler)])
    
    def main():
        run_wsgi_app(application)
    
    if __name__ == "__main__":
        main()
    

5
投票

您可以使用 python 处理程序轻松重定向所有请求。类似的东西

class FormHandler(webapp.RequestHandler):
  def post(self):
    if processFormData(self.request):
      self.redirect("http://example.com")

5
投票

如果您想要一种仅静态文件的方式来进行“重定向”,那么请执行以下操作:

app.yaml
中,将其作为包罗万象的内容放在文件末尾:

-   url: /.*
    static_files: root/redirect.html
    upload: root/redirect.html

然后在

root/redirect.html
文件中,输入:

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="refresh" content="0;URL=/" />
        <script>
            location.replace("/");
        </script>
    </head>
    <body></body>
</html>

此示例会将所有未知 URL 重定向到根目录(即 / )。如果您想要另一个 URL,只需在适当的位置替换

http://example.com
即可。


4
投票

这是一个将执行重定向的 python 脚本:

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class MainPage(webapp.RequestHandler):
  def get(self, path):
    self.redirect("http://example.com", permanent=True)
  def head(self, path):
    self.redirect("http://example.com", permanent=True)

application = webapp.WSGIApplication(
            [
                (r'^(.*)', MainPage)
            ])

def main():
   run_wsgi_app(application)

if __name__ == "__main__":
    main()

-1
投票

之前的答案中提到的 webapp2 的重定向处理程序 (webapp2.RedirectHandler) 不适用于 post 请求,因为它不包含 post 方法(请参阅 https://github.com/GoogleCloudPlatform/webapp2/blob/master/ webapp2.py),因此如果关心帖子,您将需要滚动自己的 python 处理程序。类似于以下内容:

import webapp2

class MainPage(webapp2.RequestHandler):


    def post(self):
        self.redirect('http://example.com')


application = webapp2.WSGIApplication([
('/.*', MainPage)
], debug=False)

-1
投票

抄袭埃文的答案,要重定向所有请求,您可以使用正则表达式执行以下操作:

import webapp2
from webapp2_extras.routes import RedirectRoute

app = webapp2.WSGIApplication([
     RedirectRoute('/<:.*>', redirect_to='/')
    ], debug=False)

有关官方文档,请查看:

https://webapp2.readthedocs.io/en/latest/guide/routing.html

https://webapp2.readthedocs.io/en/latest/api/webapp2.html#webapp2.Route。init

© www.soinside.com 2019 - 2024. All rights reserved.