I'm having trouble getting static .html
pages loaded for my Python
app. When I click on a link like index.html, I get a blank page and on the server log a 404 error. This is the same for other static .html
files such as about.html.
The application works bar the static files. I've tried looking in numerous places, but I cannot seem to get the .html pages up. i.e.
INFO 2011-04-16 17:26:33,655 dev_appserver.py:3317] "GET / terms.html HTTP/1.1" 404 -
yaml:
application: quote
version: 1
runtime: python
api_version: 1
handlers:
- url: /index\.html
script: index.py
- url: /
script: index.py
- url: /(.*\.(html))
static_files: static/\1
upload: static/HTML/(.*\.(html))
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: images/favicon.ico
mime_type: image/x-icon
- url: /css
static_dir: static/css
- url: /images
static_dir: static/images
- url: /js
static_dir: static/js
My static files are located in static/HTML and index.html is in the main folder.
I have also tried this, but it seems to make no difference at all:
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: images/favicon.ico
mime_type: image/x-icon
- url: /css
static_dir: static/css
- url: /images
static_dir: static/images
- url: /js
static_dir: static/js
- url: /(.*\.(html))
static_files: static/\1
upload: static/HTML/(.*\.(html))
- url: /index\.html
script: index.py
- url: /
script: index.py
Keep your HandlerScripts below the Static Directory handling portion. IOW, just move this to the last.
- url: /index\.html
script: index.py
- url: /
script: index.py
Put an /HTML
in your static_files path:
- url: /(.*\.(html))
static_files: static/HTML/\1
upload: static/HTML/(.*\.(html))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With