2

我按照教程为我计划在 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 工作的教程。

4

1 回答 1

0

首先,您的 app.yaml 或 main.py 是错误的。由于 Python27 是更现代的运行时,我建议它是 app.yaml,我建议使用以下 app.yaml:

application: testsite
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: .*
  script: main.application

然后你在子目录中谈论名为 index.html 的文件,但它们无法在任何地方访问。相反,您访问“xyz.html”和“xyz/123.html”。

请尝试以下代码片段:

        if p:
            page = os.path.join(p, "index.html")
        else:
            p = "main"
            page = "main.html"

顺便说一句:您应该考虑模板继承而不是包含标签!

于 2013-01-08T14:30:33.173 回答