1👍
✅
Add a slash before your path to use absolute url. Django here is trying to use relative path. Which end up in the same endpoint in your application, and loop again.
return HttpResponseRedirect('/appname/index.html',{'form':form,'expire':True})
Source:stackexchange.com