这是我的 yaml 文件的内容:
application: myapp
version: 1
runtime: php
api_version: 1
handlers:
url: /static
static_dir: static
url: /suggest/.*
script: suggestions.php
url: /.*
script: index.php
静态页面工作正常,index.php 也是如此。
问题是,我无法为suggestions.php 加载我的页面。我只是得到一个空白的白页。
在我的本地服务器上它运行良好,但是当我部署到 appengine 时它是一个空白页面,所以我认为我的处理程序有问题。有什么建议吗?