Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found this solution for serving favicon.ico with django.

(r'^favicon\.ico$',
  'django.views.generic.simple.redirect_to',
  {'url': settings.MEDIA_URL+'images/favicon.ico'}),

I do not understand why it only works for the development server. Going to /favicon.ico works on dev, doesn't with debug=False. It should redirect to /media/images/favicon.ico (served by apache), which does work if you access it directly.

Any ideas?

share|improve this question
What is MEDIA_URL set to when it doesn't work? – meder Aug 11 '10 at 17:13

2 Answers

up vote 19 down vote accepted

I'd recommend against serving the favicon with django unless you absolutely have to. Instead, putting a setting in your web server config that adds an alias pointing to the favicon.

For example, in apache:

Alias /favicon.ico /path/to/media_url/images/favicon.ico
share|improve this answer
Agreed. Just went to my shared hosting, got it to work putting an exception for lighttpd (I thought it was apache serving the stuff) – Clash Aug 11 '10 at 17:26

This is not direct answer to you question, but you can use this for favicon:

<link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.ico" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.