I am using webpy framefork. I want to serve static file on one of requests. Is there special method in webpy framework or I just have to read and return that file?
|
|
|
If you are running the dev server (without apache):
Reference: http://webpy.org/cookbook/staticfiles Update. If you really need to serve a static file on
|
||||
|
I struggled with this for the last couple of hours... Yuck! Found two solutions which are both working for me... 1 - in .htaccess add this line before the ModRewrite line:
This will make sure that requests to the /static/ directory are NOT rewritten to go to your code.py script. 2 - in the code.py add a static handler and a url entry for each of several directories:
Note - I stole this from the web.py google group but can't find the dang post any more! Either of these worked for me, both within the templates for web.py and for a direct call to a web-page that I put into "static" |
|||||||||||||
|
|
I don't recommend serving static files with web.py. You'd better have apache or nginx configured for that. |
|||
|
|