Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Returning a static file from a route that matches all URLs behaves unexpectedly #625

Open
lucasgerads opened this issue Jun 8, 2023 · 0 comments

Comments

@lucasgerads
Copy link

I am not sure if this is a bug or intended behaviour. But the following code will not return the static file in case the "catchAll" function is called by url that is nested deeper i.e. calling http://localhost:8080/abc works while calling http://localhost:8080/abc/def doesn't work and will return "No Such Resource". The "catchAll" function gets called, but doesn't return the static file. Calling an explicitly declared url path that is nested such as http://localhost:8080/another/test however works.

from twisted.web.static import File

from klein import Klein

app = Klein()

@app.route('/<path:path>') # <- doesn't work if url is nested deeper
def catchAll(request, path):
    print(path)
    return File("./test.html")

@app.route("/test")    # <- works
def test(request):
    return File("./test.html")

@app.route("/another/test") # <- works
def test2(request):
    return File("./test.html")

app.run("localhost", 8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant