GAE:未处理Index.php

时间:2019-05-22 11:23:44

标签: php google-app-engine app.yaml

我要做的就是单击链接时加载这些文件夹中的index(index.php)。这在我的WAMP上可以在本地正常运行,而在GAE上则不能。所以我不确定是什么问题。在这一点上,我只是想使简历链接正常工作。现在,单击恢复链接后,它将加载主页(http://danieljohndunevant.io/resume)。我绝对是在做错事或对这里或那里的事情有误解。因此,我感谢能获得的任何帮助。谢谢! (由于我做了某些事情,更新站点已关闭,但是我没有php错误,所以我不知道问题是什么) 这是网站:http://danieljohndunevant.io 这是我的目录结构的图像: Directory Structure 这是我的app.yaml代码:

npm init stencil

以下是链接的代码:

runtime : php55
api_version : 1

handlers:
# Serve images as static resources.
- url: /(.+\.(gif|png|jpg))$
  static_files: \1
  upload: .+\.(gif|png|jpg)$
  application_readable: true

# Serve php scripts.
- url: /(.+\.php)$
  script: \1

- url: /resume/*
  script: index.php

0 个答案:

没有答案