Explain Django's URL routing.
Question :
Explain Django's URL routing.
URL routing in Django is handled by the URLconf (URL configuration). It maps URLs to views. The URLconf is defined in the urls.py file of each Django app. It uses regular expressions to match URLs and directs them to the appropriate view function.