Cómo redirigir todas las URL con Google App Engine

¿Cómo configuro el archivo app.yaml para redirigir todas las URL a otra URL? Por ejemplo quierohttp://test.appspot.com/hello ohttp://test.appspot.com/hello28928723 para redirigir ahttp://dominio.com.

Sólo estoy sirviendo archivos estáticos en este momento. Aquí está mi archivo app.yaml:

<code>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
</code>

Respuestas a la pregunta(7)

Su respuesta a la pregunta