I’m experiencing this error where when I try to redirect a user to a webpage using Django, it showed me this error
maximum recursion depth exceeded
views.py
JavaScript
x
8
1
from django.shortcuts import render, redirect
2
from django.http import HttpResponse
3
4
def redirect(request):
5
response = redirect("https://google.com")
6
return response
7
8
app’s urls.py
JavaScript
1
5
1
urlpatterns = [
2
path('', views.redirect, name="donate-home"),
3
]
4
5
Project’s urls.py
JavaScript
1
8
1
from django.contrib import admin
2
from django.urls import path, include
3
4
urlpatterns = [
5
path('admin/', admin.site.urls),
6
path('donate/', include("support.urls"))
7
]
8
Did I do something wrong? Did I not add something in settings.py?
I’m new to Django
Advertisement
Answer
When you create the function “redirect”, you ovewrites the built-in function “redirect” In this case its behaving like a recusive function. You just have to change the name of your funnction and it sould be fixed ;)