HI,

> I haven't bothered to try fixing it yet, but I wonder if a redirect
> from /favicon.ico to /media/images/favicon.ico might solve that issue.
>  If I get a chance I'll test it today, see if works.  Has anyone else
> experimented with this?

Well, at least a couple of ways to fix that. If you're hosting your
project with Apache, I suggest trying a .htaccess / httpd.conf
solution with mod_rewrite. If that's not what you like, you can add
favicon.ico to your django urlconf and code a simple view that will
serve .ico data with proper content-type as mentioned for example in
the Django Book: http://www.djangobook.com/en/1.0/chapter11/. Of
course you can also code a HTTP 301 redirect there using django, but
doing rewrite at server level will save you some time and resources.

HTH.

Regards,
Piotr
--~--~---------~--~----~------------~-------~--~----~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to