以下是我的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也是如此。
问题是,我无法加载我的pages.php页面。我只是得到一个空白的白页。
在我的本地服务器上它运行良好,但当我部署到appengine它是一个空白页面时,所以我认为我的处理程序出了问题。有什么建议吗?