1

我正在将 GAE 用于一个只有 html/htm 页面、图片等的简单静态网站。我也在使用 Python 2.7。

所以我使用直接的 app.yaml 和 main.py 并且可以。但是,当访问一个不存在的页面时,它会显示一个标准的 404 页面。我想将其更改为自定义错误页面,并在下面尝试了此操作,但它不起作用。

这是我的 app.yaml 和 main.py 文件:

application: xxxx
version: 11
runtime: python27
api_version: 1
threadsafe: true

default_expiration: "7d"

inbound_services:
- warmup

handlers:
- url: /
  static_files: index.html
  upload: index.html

- url: /(.*)
  static_files: \1
  upload: (.*)

- url: /.*
  script: main.app

主要.py:

import webapp2

class BaseHandler(webapp2.RequestHandler):
  def handle_exception(self, exception, debug):
    # Set a custom message.
    self.response.write('An error occurred.')

    # If the exception is a HTTPException, use its error code.
    # Otherwise use a generic 500 error code.
    if isinstance(exception, webapp2.HTTPException):
      self.response.set_status(exception.code)
    else:
      self.response.set_status(500)

class MissingPage(BaseHandler):
  def get(self):
    self.response.set_status(404)
    self.response.write('Page has moved. Pls look at http://www.yyyyyy.yy to find the new location.')

class IndexHandler(webapp2.RequestHandler):
    def get(self):
        if self.request.url.endswith('/'):
            path = '%sindex.html'%self.request.url
        else:
            path = '%s/index.html'%self.request.url

        self.redirect(path)

    def post(self):
        self.get()

app = webapp2.WSGIApplication(
   [  (r'/', IndexHandler),
      (r'/.*', MissingPage)
      ],
   debug=True)

什么不正确??我找到了很多条目,但没有一个能准确解释如何使用 Python 2.7 为一个简单的网站执行此操作,

让我知道,非常感谢,迈克尔

4

1 回答 1

2

看起来除了 404 页面之外,您的网站实际上不需要任何动态部分。有一个error_handlers可以直接使用。

https://developers.google.com/appengine/docs/python/config/appconfig#Custom_Error_Responses

application: xxxx
version: 11
runtime: python27
api_version: 1
threadsafe: true

default_expiration: "7d"

inbound_services:
- warmup

handlers:
- url: /
  static_files: index.html
  upload: index.html

- url: /(.*)
  static_files: \1
  upload: (.*)

error_handlers:
- file: default_error.html
于 2013-05-14T08:58:48.797 回答