我有一个完全静态的网站,该网站已经部署到Google App Engine,但是我无法让它返回我的自定义404页面,只是这样的通用页面。
<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>404 Not Found</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Not Found</h1>
<h2>The requested URL <code>/foo</code> was not found on this server.</h2>
<h2></h2>
</body></html>
我尝试了所有可以找到的解决方案,但仍然无法使它起作用。我尝试按照this answer中的建议添加require_matching_file: true
,但无济于事。我也曾尝试在存储分区存储选项下“修改网站配置”。
这是我的app.yaml文件。
runtime: php55
api_version: 1
threadsafe: true
# Handle the main page by serving the index page.
handlers:
- url: /$
static_files: build/index.html
upload: build/index.html
# Handle folder urls by serving the index.html page inside.
- url: /(.*)/$
static_files: build/\1/index.html
upload: build/.*/index.html
# Handle nearly every other file by just serving it.
- url: /(.+)
static_files: build/\1
upload: build/(.*)
# all other pages are a 404
- url: /.*
static_files: build/404.html
upload: build/404.html
# This doesn't work either
error_handlers:
- file: build/404.html
这是我网站的目录结构。
build
│
│ index.html
│ 404.html
│
└───blog
│ │ index.html
│ │
│ └───post-1
│ │ index.html
│ post-2
│ │ index.html
│ | ...
│
└───data
│ │ blog-posts.json
│ │ projects.json
│
└───img
│ │ image-1.jpg
│ │ image-2.jpg
│ | ...
│
└───projects
│ │ index.html
│ │
│ └───project-1
│ │ index.html
│ project-2
│ │ index.html
│ | ...
│
└───static
│ │
│ └───css
│ │ styles.css
│ js
│ │ scripts.js
│
最终,我想使用PHP 404页面发送正确的404标头,但现在我选择了纯HTML页面。
答案 0 :(得分:1)
这对我有用的app.yaml文件。
runtime: php55
api_version: 1
threadsafe: true
# Handle the main page by serving the index page.
handlers:
- url: /
static_files: build/index.html
upload: build/index.html
# Handle folder urls by serving the index.html page inside
- url: /(.*)/$
static_files: build/\1/index.html
upload: build/.*/index.html
# Handle other file types by just serving them
- url: /(.*\.(css|js|json|gif|eot|png|jpg|jpeg|ico|svg|xml|woff|woff2))$
static_files: build/\1
upload: build/.*\.(css|js|json|gif|eot|png|jpg|jpeg|ico|svg|xml|woff|woff2)$
# all other pages are a 404
- url: /.*
script: build/404.php
结构与问题中发布的结构相同,我只是将404.html
更改为404.php
。