On Nov 30, 5:26 pm, l0he1g <[EMAIL PROTECTED]> wrote: > Hi,everyone,this is a beginner's first post,after a long,tired search > here and there without any solution. > I use apache+mod_python on windows,The problem is the css and images > does't be imported anyway,as I did what "How to use Django with Apache > and mod_python" told inhttp://docs.djangoproject.com/. > <snip> > <link rel="stylesheet" href="static/style/index.css"> > <img src="static/images/logo.png">
I'm guessing your problem lies here. You haven't used an initial slash, so the browser is looking for a path relative to your Django page's URL. Try <img src="/static/images/logo.png"> and see if that works. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

