I have a strange problem with css file in google app engine.
If i use
<<>strong>handlers:
- url: /cms/.* script: cms.py
- url: /
script: main.py
- url: /stylesheets
static_dir: stylesheets
in my app.yaml
file for http://localhost:8080/ it works fine.
But when i redirect it to another handler in main.py
It gives such an error
Not found error: /login did not match any patterns in application configuration.
当我使用时
<<>strong>handlers:
- url: /cms/.* script: cms.py
- url: .*
script: main.py
- url: /stylesheets
static_dir: stylesheets
whole logic works just fine ( no error occurs wherever I roam in the application) but no sign of css this time.
I hope you can help me.
提前感谢。