2014-04-10 54 views
0

我正在運行一個webpy + Apache服務器。當我嘗試導航到/ projects/Index(它總是在過去工作),我得到一個404未找到的錯誤。當我檢查ctx.fullpath時,它說所請求的路徑是/redirect:/code.py/projects.pyc/Index/Index,實際上只是/ projects/Index。爲什麼會發生這種情況,我該如何解決這個問題?

我主要的應用程序文件我有這樣的代碼:
webpy 404奇怪的URL錯誤

urls = (
    "/stream","stream", 
    "/","index", 
    "/projects","projects", 
    "/prj/(.+)", "projects", 
    "/projects/(.+)", "projects", 
    "/files","files", 
    "/login", "login", 
    "/Firewall", collector.app_firewall, 
) 

app = web.application(urls, globals()) 
session = web.session.Session(app, web.session.DiskStore('/var/www/sessions'), initializer={'count': 0}) 
application = app.wsgifunc() 
class Content: 
    root = "/var/www/static" #default document root for open() 
    title = "Brian Barrett" #default title 
content = Content() 
content.user = "login" 

class index: 
    def GET(self): 
     content.title = "Brian Barrett" 
     content.content = open(content.root + "/index.html", "r").read() 
     return render.layout(content) 

class projects: 
    def GET(self, project): 
     content.title = project 
     content.content = "Project not found! Check <a href='/projects/index'>here</a>." 
     if project.endswith("js"): 
      return open(content.root + "/projects/" + project).read() 
     #the following returns the index of all projects 
     if project.lower() == "index" or not project or project == "": 
      content.title = "Projects" 
      content.content = open(content.root + "/prj/projects.html", "r").read() 
      return render.layout(content) 
     #find project in /static/projects, return that 
     else: 
      html_projects = [] # new array 
      for root, dirs, files in os.walk("/var/www/static/prj/"): 
       for file in files: 
        if file.endswith(".html"): #if it is an html file 
         html_projects.append(os.path.join(root, file)) #put HTML in array 
      for p in html_projects: 
       if p.find(str(project.lower())) != -1: #if the filename has the request in it 
        content.content = open(p, "r").read() # set content to said HTML 
      content.title = project.replace("_"," ") # important! links must have capitalized titles 
      return render.layout(content) 

回答

0

答案是,我在叫projects.pyc同一目錄中的蟒蛇字節碼文件,它顯然試圖將用戶重定向那裏。我刪除了該文件,並解決了該問題。儘管如此,仍然困惑於它爲什麼這樣做。