Django Redirects | Complete Guide of RedirectsIn this tutorial, we will one of the important Django concepts redirect. We will learn about the Django redirects and their uses. We will also see the example of Redirects and will discuss the permanent and temporary redirects. We assume that you have already familiar with the basic building concept of Django, like views, models, and URL patterns. If you are not familiar with Django, then visit our Django tutorial. What are Redirects?When we create a web application using Django framework, we will at some point where we need to visit one URL to another. We can easily jump from current URL to another URL by returning an instance of HttpResponseRedirect or HttpResponseRedirect from our view in django. We need to import the redirect function using the django.shortcuts module in our view.py file. Let's see the following example. Example - view.py In the above view.py file, we import the redirect() function and call with a URL in the view. It will return the HttpResponseRedirect class, which we then return from our view. This redirect_view must be included in the url.py file. Suppose this is the main url.py file of our Django project; the URL /redirects/ now redirects the /redirect-success/. There is another way to redirect the URLs. We can use the redirect() function with the name of the view or URL to avoid the hard-coding style. Why Redirects Useful?Someone might wonder why we use redirect when we redirect the URL. To understand where the redirects make sense, read the following important points regarding the redirects.
When you create an object in the Django admin, Django redirects you to the object list. Apart from that, Django Redirects plays an essential role in providing the direction to the user by the web application. Performing the operations like creating or deleting the object may create some inconvenience in the application. Use of redirect can prevent the accidently operating twice. Form handing Example of RedirectIn the below example, we will use the redirect() function in the form handling, when the user submitting the form successfully. Let's understand the following code. Example - The above code will display and handle the contact form. We can send the data to template file as well. Let's understand the code in detail.
Note - In Django, the form is created in the forms.py but we create the form in view.py file to demonstrate how to handle the form.How an HTTP Redirect Works?Now, here is the questions, how do HTTP redirect works. In this section, we will learn what happen when user enters a URL in the address bar on their browser. Suppose we have created a Django application with the "HelloWorld" view that handles the path /hello/. When we run the web application on the server, the complete URL will be http://127.0.0.1:8000/hello/. In the URL, 127.0.0.1 is IP address and 8000 is a port. We send the GET request for the path /hello/. The server returns the HTTP response. We can use the curl command with the -include option to look the client and server activity. In the first line, HTTP response returns the status code 200 and status message. The status line is followed by an arbitrary number of HTTP headers. Temporary vs. Permanent RedirectThere are two types of redirects - Temporary and Permanent. The status code 301 represents Permanent Redirect and 302 found. The found indicates a temporary redirect which means, "The URL you are looking for currently can be found another address." It is the same as "Our shop is currently closed. Please visit to other store". The permanent redirect represents that "The URL you are looking is no longer available at this address. It is available on the new address." The permanent URL makes the change permanently. The browser saves the URL response in the cache. Next time the user enters the same URL, the browser remembers the redirect and redirect requests to the new address. The permanent and temporary URL is relevant for search engine optimization. The redirect() FunctionWe have shown the use of the redirect() function earlier. We can call this method with a get_absolute_url() method, A URL or view name, and positional and /or keyword arguments. To make the permanent URL, we need to pass the argument permanent=True, and it will return an instance of HttpResponsePermanentRedirect. Example - The redirect() function will treat any string a /or .as a URL and use it as redirect target. The RedirectView Class-Based ViewSuppose we have the view that has no use but returning a redirect. In that case, we can use the class-based view django.view.generic.base.RedirectView. In the following example, string formatting placeholders are swapped with the named arguments from the URL. Example - view.py Example - urls.py The URL define with the <term>, which will help to build redirect. Suppose we search Tom Hardy, the path will be https://google.com/?q=TomHardy. We pass the keyword argument url to as_view() in the urlpatterns. urls.py We can create the dynamic URL by overwriting the get_redirect_url() method. view.py The above class-based view redirect to the URL picked randomly from .actor_urls. ConclusionThis tutorial included the guide on HTTP redirects with Django. We have explored each important concept of redirects from the low-level detail to high-level detail of HTTP protocols. We explained permanent and temporary redirects, class-based redirects. Moreover, the knowledge about redirect is not only limited to the Django framework; it can be used for web development in any language. Next TopicDjango on_delete |