1

我正在使用谷歌应用引擎上传我的 php 文件。例如这是我的测试 url http://testing12399234.appspot.com/index.php,每当找不到该 url 时,我希望页面指向http://testing12399234.appspot.com/index.php,例如访问http://testing12399234.appspot.com/randomblabla12312必须显示的内容http://testing12399234.appspot.com/index.php。我知道它可能通过 .htaccess 。但是如何在谷歌 GAE 中使用 .htaac​​cess

4

1 回答 1

0

app.yaml 文件包含应用程序的处理程序。与请求的 URL 匹配的第一个处理程序用于为请求提供服务。在链接的文档中,最后一个处理程序是:

- url: /.*
  script: not_found.php

因此,这将匹配任何尚未匹配的 URL,并将其发送到您的自定义未找到页面。只需确保它是配置文件中的最后一个处理程序,否则它将优先于其他处理程序。

Google AppEngine PHP AppConfig 文档

于 2013-06-26T17:01:30.783 回答