Web アプリ django をデプロイした後、壊れたリンクのメールを送信し始めます。昨日から問題を解決するために一生懸命努力してきましたが、成功しませんでした。
私が受け取ったメールは次のとおりです。
Referrer: http://tesst.com/listing/
Requested URL: /favicon.ico
User agent: Opera/9.80 (Android; Opera Mini/7.5.31657/28.3030; U; en) Presto/2.8.119 Version/11.10
IP address: 000.00.0.00 #just used this 0 to represent IP address of the user.
頭の私のテンプレートで:
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="utf-8" />
<meta name="robots" content="index, follow" />
<meta name="webmaster" content="test@gmail.com" />
<link href= "{{ MEDIA_URL }}/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="{{ MEDIA_URL }}/css/style.css"/>
<title> {% block title %} {% endblock %} </title>
</head>
更新:これはビューです
def lispy(request):
cripys=Wriby.objects.all()
for crip in cripys:
print crip.id
return render_to_response('partners.html',{'cripys':cripys,'crip':crip},context_instance=RequestContext(request))
else:
return HttpResponse('Invalid')
どうすればこの問題を解決できますか?