I'm using Django .96 and I'm having trouble getting get_absolute_url to add a www. prefix on to my URLs.
For the most part everything on my site keeps people on my www. URL, which is my goal, but my sitemap and RSS feeds point to URLs without a www. on them. Does anyone know a good way to fix this? Here's an example of how my get_absolute_url statement looks. def get_absolute_url(self): return "/appname/%s/%s/" % (self.creation_date.strftime("%Y/%b/ %d").lower(), self.slug ) --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---