我using this guide使用Google Cloud SQL将Django“开箱即用”与Google App Engine结合使用。
虽然大多数应用程序运行正常,但是当我执行dev_appserver.py myapp
时静态文件(样式表和javascripts)没有显示,但是如果我运行manage.py runserver
直接访问该文件会显示以下错误:
Page Not Found (404):
Using the URLconf defined in urls, Django tried these URL patterns, in this order:
^$
^trades/
^login/$ [name='login']
^logout/$ [name='logout']
^admin/
The current URL, static/css/basic.css, didn't match any of these.
请提供任何线索。
[P.S。我正在使用Django 1.3版,python 2.7和Google Appengine SDK 1.6.3预发行版(因为它支持带有python 2.7的Django 1.3)。]