settings.py:
MEDIA_URL = "http://localhost:80"
MEDIA_ROOT = '/media/'
I have an apache running there and navigating to http://localhost/media
works fine.
In my base template I have this:
<link href="css/base.css" rel="stylesheet" />
But it's not working as I hoped. So how can I make the request
http://127.0.0.1:80/media/css/base.css
instead of this:
http://127.0.0.1:8000/css/base.css
Did I misunderstand MEDIA_URL and/or MEDIA_ROOT ?
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
No comments:
Post a Comment