Re: urls.conf problem

2006-06-09 Thread Michael Radziej
[EMAIL PROTECTED] wrote: > I uses django.views.static to serve my static files. I wrote some > static html files and want them to be accessed from site's root, for > example, http://127.0.0.1/file1.html http://127.0.0.1/file2.html, so I > edit urls.py to: > (r'^.*$', 'django.views.static.serv

urls.conf problem

2006-06-09 Thread [EMAIL PROTECTED]
I uses django.views.static to serve my static files. I wrote some static html files and want them to be accessed from site's root, for example, http://127.0.0.1/file1.html http://127.0.0.1/file2.html, so I edit urls.py to: (r'^.*$', 'django.views.static.serve', {'document_root':'c:/htmls'}),