我按照教程为我计划在 Google App Engine (Python) 上托管的网站创建漂亮的 URL。
问题是它不会在子目录中显示索引页。
我有一个名为 abc.html 的文件,它可以在这个地址 http://www.testsite.com/abc
但是我在子目录(xyz 和 123)中有索引文件,这些文件不会加载到内容区域(内容区域中的空白)
带有 index.html 的子目录 xyz: http ://www.testsite.com/xyz
子目录 123 与目录 xyz 内的 index.html: http ://www.testsite.com/xyz/123
这是我使用的代码
应用程序.yaml
application: testsite
version: 1
runtime: python
api_version: 1
threadsafe: yes
default_expiration: "1d"
handlers:
- url: /(.*\.(gif|png|jpg|ico|js|css|swf|xml))
static_files: \1
upload: (.*\.(gif|png|jpg|ico|js|css|swf|xml))
- url: /.*
script: main.py
主文件
import os
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from google.appengine.ext.webapp import template
class MainPage(webapp.RequestHandler):
def get(self, p):
if p:
page = p + ".html"
else:
p = "main"
page = p + ".html"
if not os.path.exists(page):
page = "404.html"
template_values = {
"page" : page,
p: "first",
};
path = os.path.join(os.path.dirname(__file__), 'index.html')
self.response.out.write(template.render(path, template_values))
application = webapp.WSGIApplication([(r'/(.*)', MainPage)],debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
索引.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>TestTitle</title>
<link href="/static/style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="header">
<ul>
<li><a href="main">Home</a></li>
<li><a href="abc">abc</a></li>
<li><a href="xyz/123">xyz</a></li>
</ul>
</div>
<div id="content">
<!-- this is where content will be loaded -->
{% if page %}
{% include page %}
{% else %}
{% include "main.html" %}
{% endif %}
</div>
<div id="sidebar">
TestSideBar
</div>
<div id="footer">
TestFooter
</div>
</body>
</html>
PS:我遵循的教程是动态页面+ URL重写指南。动态页面方面并不是真正需要的。我只是找不到可以让漂亮的 URL 工作的教程。