Hi:
So I started a Django project, got my templates to serve, go my index going, gome some static content to serve. My index page works on http://www.foo.com/ So now that I add an about page, as www.foo.com/about what I get is a bunch of 404 errors because it's looking form my CSS and images in: /about/css/styles.css (should be /css/styles.css) and images references in the CSS in about/css/i/abc.png (should be i/abc.png). I don't really want to keep recurring and linking my file system to make this work. So what I want is all my CSS to be retrieved from /css/ and all my images from /i/. Easy as that. So I need to understand why it's going /about/css and stop it. Thanks, Jason. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

