5 A clean, elegant URL scheme is an important detail in a high-quality Web
6 application. Django lets you design URLs however you want, with no framework
9 There's no ``.php`` or ``.cgi`` required, and certainly none of that
10 ``0,2097,1-1-1928,00`` nonsense.
12 See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for
13 excellent arguments on why URLs should be clean and usable.
15 .. _Cool URIs don't change: http://www.w3.org/Provider/Style/URI
20 To design URLs for an app, you create a Python module informally called a
21 **URLconf** (URL configuration). This module is pure Python code and
22 is a simple mapping between URL patterns (as simple regular expressions) to
23 Python callback functions (your views).
25 This mapping can be as short or as long as needed. It can reference other
26 mappings. And, because it's pure Python code, it can be constructed
29 How Django processes a request
30 ==============================
32 When a user requests a page from your Django-powered site, this is the
33 algorithm the system follows to determine which Python code to execute:
35 1. Django looks at the ``ROOT_URLCONF`` setting in your `settings file`_.
36 This should be a string representing the full Python import path to your
37 URLconf. For example: ``"mydjangoapps.urls"``.
38 2. Django loads that Python module and looks for the variable
39 ``urlpatterns``. This should be a Python list, in the format returned by
40 the function ``django.conf.urls.defaults.patterns()``.
41 3. Django runs through each URL pattern, in order, and stops at the first
42 one that matches the requested URL.
43 4. Once one of the regexes matches, Django imports and calls the given
44 view, which is a simple Python function. The view gets passed a
45 `request object`_ as its first argument and any values captured in the
46 regex as remaining arguments.
48 .. _settings file: ../settings/
49 .. _request object: ../request_response/#httprequest-objects
54 Here's a sample URLconf::
56 from django.conf.urls.defaults import *
58 urlpatterns = patterns('',
59 (r'^articles/2003/$', 'news.views.special_case_2003'),
60 (r'^articles/(\d{4})/$', 'news.views.year_archive'),
61 (r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
62 (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
67 * ``from django.conf.urls.defaults import *`` makes the ``patterns()``
70 * To capture a value from the URL, just put parenthesis around it.
72 * There's no need to add a leading slash, because every URL has that. For
73 example, it's ``^articles``, not ``^/articles``.
75 * The ``'r'`` in front of each regular expression string is optional but
76 recommended. It tells Python that a string is "raw" -- that nothing in
77 the string should be escaped. See `Dive Into Python's explanation`_.
81 * A request to ``/articles/2005/03/`` would match the third entry in the
82 list. Django would call the function
83 ``news.views.month_archive(request, '2005', '03')``.
85 * ``/articles/2005/3/`` would not match any URL patterns, because the
86 third entry in the list requires two digits for the month.
88 * ``/articles/2003/`` would match the first pattern in the list, not the
89 second one, because the patterns are tested in order, and the first one
90 is the first test to pass. Feel free to exploit the ordering to insert
91 special cases like this.
93 * ``/articles/2003`` would not match any of these patterns, because each
94 pattern requires that the URL end with a slash.
96 * ``/articles/2003/03/3/`` would match the final pattern. Django would call
97 the function ``news.views.article_detail(request, '2003', '03', '3')``.
99 .. _Dive Into Python's explanation: http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
104 The above example used simple, *non-named* regular-expression groups (via
105 parenthesis) to capture bits of the URL and pass them as *positional* arguments
106 to a view. In more advanced usage, it's possible to use *named*
107 regular-expression groups to capture URL bits and pass them as *keyword*
110 In Python regular expressions, the syntax for named regular-expression groups
111 is ``(?P<name>pattern)``, where ``name`` is the name of the group and
112 ``pattern`` is some pattern to match.
114 Here's the above example URLconf, rewritten to use named groups::
116 urlpatterns = patterns('',
117 (r'^articles/2003/$', 'news.views.special_case_2003'),
118 (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
119 (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'),
120 (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'),
123 This accomplishes exactly the same thing as the previous example, with one
124 subtle difference: The captured values are passed to view functions as keyword
125 arguments rather than positional arguments. For example:
127 * A request to ``/articles/2005/03/`` would call the function
128 ``news.views.month_archive(request, year='2005', month='03')``, instead
129 of ``news.views.month_archive(request, '2005', '03')``.
131 * A request to ``/articles/2003/03/3/`` would call the function
132 ``news.views.article_detail(request, year='2003', month='03', day='3')``.
134 In practice, this means your URLconfs are slightly more explicit and less prone
135 to argument-order bugs -- and you can reorder the arguments in your views'
136 function definitions. Of course, these benefits come at the cost of brevity;
137 some developers find the named-group syntax ugly and too verbose.
139 The matching/grouping algorithm
140 -------------------------------
142 Here's the algorithm the URLconf parser follows, with respect to named groups
143 vs. non-named groups in a regular expression:
145 If there are any named arguments, it will use those, ignoring non-named arguments.
146 Otherwise, it will pass all non-named arguments as positional arguments.
148 In both cases, it will pass any extra keyword arguments as keyword arguments.
149 See "Passing extra options to view functions" below.
151 What the URLconf searches against
152 =================================
154 The URLconf searches against the requested URL, as a normal Python string. This
155 does not include GET or POST parameters, or the domain name.
157 For example, in a request to ``http://www.example.com/myapp/``, the URLconf
158 will look for ``/myapp/``.
160 In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
163 The URLconf doesn't look at the request method. In other words, all request
164 methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
165 function for the same URL.
167 Syntax of the urlpatterns variable
168 ==================================
170 ``urlpatterns`` should be a Python list, in the format returned by the function
171 ``django.conf.urls.defaults.patterns()``. Always use ``patterns()`` to create
172 the ``urlpatterns`` variable.
174 Convention is to use ``from django.conf.urls.defaults import *`` at the top of
175 your URLconf. This gives your module access to these objects:
180 A function that takes a prefix, and an arbitrary number of URL patterns, and
181 returns a list of URL patterns in the format Django needs.
183 The first argument to ``patterns()`` is a string ``prefix``. See
184 "The view prefix" below.
186 The remaining arguments should be tuples in this format::
188 (regular expression, Python callback function [, optional dictionary [, optional name]])
190 ...where ``optional dictionary`` and ``optional name`` are optional. (See
191 `Passing extra options to view functions`_ below.)
194 Since `patterns()` is a function call, it accepts a maximum of 255
195 arguments (URL patterns, in this case). This is a limit for all Python
196 function calls. This will rarely be problem in practice, since you'll
197 typically structure your URL patterns modularly by using `include()`
198 sections. However, on the off-chance you do hit the 255-argument limit,
199 realise that `patterns()` returns a Python list, so you can split up the
200 construction of the list.
204 urlpatterns = patterns('',
207 urlpatterns += patterns('',
211 Python lists have unlimited size, so there's no limit to how many URL
212 patterns you can construct; merely that you may only create 254 at a time
213 (the 255-th argument is the initial prefix argument).
218 **New in Django development version**
220 You can use the ``url()`` function, instead of a tuple, as an argument to
221 ``patterns()``. This is convenient if you want to specify a name without the
222 optional extra arguments dictionary. For example::
224 urlpatterns = patterns('',
225 url(r'/index/$', index_view, name="main-view"),
229 This function takes five arguments, most of which are optional::
231 url(regex, view, kwargs=None, name=None, prefix='')
233 See `Naming URL patterns`_ for why the ``name`` parameter is useful.
235 The ``prefix`` parameter has the same meaning as the first argument to
236 ``patterns()`` and is only relevant when you're passing a string as the
242 A string representing the full Python import path to the view that should be
243 called if none of the URL patterns match.
245 By default, this is ``'django.views.defaults.page_not_found'``. That default
246 value should suffice.
251 A string representing the full Python import path to the view that should be
252 called in case of server errors. Server errors happen when you have runtime
255 By default, this is ``'django.views.defaults.server_error'``. That default
256 value should suffice.
261 A function that takes a full Python import path to another URLconf that should
262 be "included" in this place. See `Including other URLconfs`_ below.
264 Notes on capturing text in URLs
265 ===============================
267 Each captured argument is sent to the view as a plain Python string, regardless
268 of what sort of match the regular expression makes. For example, in this
271 (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
273 ...the ``year`` argument to ``news.views.year_archive()`` will be a string, not
274 an integer, even though the ``\d{4}`` will only match integer strings.
276 A convenient trick is to specify default parameters for your views' arguments.
277 Here's an example URLconf and view::
280 urlpatterns = patterns('',
281 (r'^blog/$', 'blog.views.page'),
282 (r'^blog/page(?P<num>\d+)/$', 'blog.views.page'),
285 # View (in blog/views.py)
286 def page(request, num="1"):
287 # Output the appropriate page of blog entries, according to num.
289 In the above example, both URL patterns point to the same view --
290 ``blog.views.page`` -- but the first pattern doesn't capture anything from the
291 URL. If the first pattern matches, the ``page()`` function will use its
292 default argument for ``num``, ``"1"``. If the second pattern matches,
293 ``page()`` will use whatever ``num`` value was captured by the regex.
298 Each regular expression in a ``urlpatterns`` is compiled the first time it's
299 accessed. This makes the system blazingly fast.
304 You can specify a common prefix in your ``patterns()`` call, to cut down on
307 Here's the example URLconf from the `Django overview`_::
309 from django.conf.urls.defaults import *
311 urlpatterns = patterns('',
312 (r'^articles/(\d{4})/$', 'mysite.news.views.year_archive'),
313 (r'^articles/(\d{4})/(\d{2})/$', 'mysite.news.views.month_archive'),
314 (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'mysite.news.views.article_detail'),
317 In this example, each view has a common prefix -- ``'mysite.news.views'``.
318 Instead of typing that out for each entry in ``urlpatterns``, you can use the
319 first argument to the ``patterns()`` function to specify a prefix to apply to
322 With this in mind, the above example can be written more concisely as::
324 from django.conf.urls.defaults import *
326 urlpatterns = patterns('mysite.news.views',
327 (r'^articles/(\d{4})/$', 'year_archive'),
328 (r'^articles/(\d{4})/(\d{2})/$', 'month_archive'),
329 (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'article_detail'),
332 Note that you don't put a trailing dot (``"."``) in the prefix. Django puts
333 that in automatically.
335 .. _Django overview: ../overview/
337 Multiple view prefixes
338 ----------------------
340 In practice, you'll probably end up mixing and matching views to the point
341 where the views in your ``urlpatterns`` won't have a common prefix. However,
342 you can still take advantage of the view prefix shortcut to remove duplication.
343 Just add multiple ``patterns()`` objects together, like this:
347 from django.conf.urls.defaults import *
349 urlpatterns = patterns('',
350 (r'^$', 'django.views.generic.date_based.archive_index'),
351 (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'django.views.generic.date_based.archive_month'),
352 (r'^tag/(?P<tag>\w+)/$', 'weblog.views.tag'),
357 from django.conf.urls.defaults import *
359 urlpatterns = patterns('django.views.generic.date_based',
360 (r'^$', 'archive_index'),
361 (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','archive_month'),
364 urlpatterns += patterns('weblog.views',
365 (r'^tag/(?P<tag>\w+)/$', 'tag'),
368 Including other URLconfs
369 ========================
371 At any point, your ``urlpatterns`` can "include" other URLconf modules. This
372 essentially "roots" a set of URLs below other ones.
374 For example, here's the URLconf for the `Django website`_ itself. It includes a
375 number of other URLconfs::
377 from django.conf.urls.defaults import *
379 urlpatterns = patterns('',
380 (r'^weblog/', include('django_website.apps.blog.urls.blog')),
381 (r'^documentation/', include('django_website.apps.docs.urls.docs')),
382 (r'^comments/', include('django.contrib.comments.urls.comments')),
385 Note that the regular expressions in this example don't have a ``$``
386 (end-of-string match character) but do include a trailing slash. Whenever
387 Django encounters ``include()``, it chops off whatever part of the URL matched
388 up to that point and sends the remaining string to the included URLconf for
391 .. _`Django website`: http://www.djangoproject.com/
396 An included URLconf receives any captured parameters from parent URLconfs, so
397 the following example is valid::
399 # In settings/urls/main.py
400 urlpatterns = patterns('',
401 (r'^(?P<username>\w+)/blog/', include('foo.urls.blog')),
404 # In foo/urls/blog.py
405 urlpatterns = patterns('foo.views',
406 (r'^$', 'blog.index'),
407 (r'^archive/$', 'blog.archive'),
410 In the above example, the captured ``"username"`` variable is passed to the
411 included URLconf, as expected.
413 Passing extra options to view functions
414 =======================================
416 URLconfs have a hook that lets you pass extra arguments to your view functions,
417 as a Python dictionary.
419 Any URLconf tuple can have an optional third element, which should be a
420 dictionary of extra keyword arguments to pass to the view function.
424 urlpatterns = patterns('blog.views',
425 (r'^blog/(?P<year>\d{4})/$', 'year_archive', {'foo': 'bar'}),
428 In this example, for a request to ``/blog/2005/``, Django will call the
429 ``blog.views.year_archive()`` view, passing it these keyword arguments::
431 year='2005', foo='bar'
433 This technique is used in `generic views`_ and in the `syndication framework`_
434 to pass metadata and options to views.
436 .. _generic views: ../generic_views/
437 .. _syndication framework: ../syndication_feeds/
439 .. admonition:: Dealing with conflicts
441 It's possible to have a URL pattern which captures named keyword arguments,
442 and also passes arguments with the same names in its dictionary of extra
443 arguments. When this happens, the arguments in the dictionary will be used
444 instead of the arguments captured in the URL.
446 Passing extra options to ``include()``
447 --------------------------------------
449 Similarly, you can pass extra options to ``include()``. When you pass extra
450 options to ``include()``, *each* line in the included URLconf will be passed
453 For example, these two URLconf sets are functionally identical:
458 urlpatterns = patterns('',
459 (r'^blog/', include('inner'), {'blogid': 3}),
463 urlpatterns = patterns('',
464 (r'^archive/$', 'mysite.views.archive'),
465 (r'^about/$', 'mysite.views.about'),
471 urlpatterns = patterns('',
472 (r'^blog/', include('inner')),
476 urlpatterns = patterns('',
477 (r'^archive/$', 'mysite.views.archive', {'blogid': 3}),
478 (r'^about/$', 'mysite.views.about', {'blogid': 3}),
481 Note that extra options will *always* be passed to *every* line in the included
482 URLconf, regardless of whether the line's view actually accepts those options
483 as valid. For this reason, this technique is only useful if you're certain that
484 every view in the the included URLconf accepts the extra options you're passing.
486 Passing callable objects instead of strings
487 ===========================================
489 Some developers find it more natural to pass the actual Python function object
490 rather than a string containing the path to its module. This alternative is
491 supported -- you can pass any callable object as the view.
493 For example, given this URLconf in "string" notation::
495 urlpatterns = patterns('',
496 (r'^archive/$', 'mysite.views.archive'),
497 (r'^about/$', 'mysite.views.about'),
498 (r'^contact/$', 'mysite.views.contact'),
501 You can accomplish the same thing by passing objects rather than strings. Just
502 be sure to import the objects::
504 from mysite.views import archive, about, contact
506 urlpatterns = patterns('',
507 (r'^archive/$', archive),
508 (r'^about/$', about),
509 (r'^contact/$', contact),
512 The following example is functionally identical. It's just a bit more compact
513 because it imports the module that contains the views, rather than importing
514 each view individually::
516 from mysite import views
518 urlpatterns = patterns('',
519 (r'^archive/$', views.archive),
520 (r'^about/$', views.about),
521 (r'^contact/$', views.contact),
524 The style you use is up to you.
526 Note that if you use this technique -- passing objects rather than strings --
527 the view prefix (as explained in "The view prefix" above) will have no effect.
532 **New in Django development version**
534 It's fairly common to use the same view function in multiple URL patterns in
535 your URLconf. For example, these two URL patterns both point to the ``archive``
538 urlpatterns = patterns('',
539 (r'/archive/(\d{4})/$', archive),
540 (r'/archive-summary/(\d{4})/$', archive, {'summary': True}),
543 This is completely valid, but it leads to problems when you try to do reverse
544 URL matching (through the ``permalink()`` decorator or the ``{% url %}``
545 `template tag`_). Continuing this example, if you wanted to retrieve the URL for
546 the ``archive`` view, Django's reverse URL matcher would get confused, because
547 *two* URLpatterns point at that view.
549 To solve this problem, Django supports **named URL patterns**. That is, you can
550 give a name to a URL pattern in order to distinguish it from other patterns
551 using the same view and parameters. Then, you can use this name in reverse URL
554 Here's the above example, rewritten to used named URL patterns::
556 urlpatterns = patterns('',
557 url(r'/archive/(\d{4})/$', archive, name="full-archive"),
558 url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, "arch-summary"),
561 With these names in place (``full-archive`` and ``arch-summary``), you can
562 target each pattern individually by using its name::
564 {% url arch-summary 1945 %}
565 {% url full-archive 2007 %}
567 Even though both URL patterns refer to the ``archive`` view here, using the
568 ``name`` parameter to ``url()`` allows you to tell them apart in templates.
570 The string used for the URL name can contain any characters you like. You are
571 not restricted to valid Python names.
575 When you name your URL patterns, make sure you use names that are unlikely
576 to clash with any other application's choice of names. If you call your URL
577 pattern ``comment``, and another application does the same thing, there's
578 no guarantee which URL will be inserted into your template when you use
581 Putting a prefix on your URL names, perhaps derived from the application
582 name, will decrease the chances of collision. We recommend something like
583 ``myapp-comment`` instead of ``comment``.
585 .. _template tag: ../templates/#url
593 If you need to use something similar to the ``{% url %}`` `template tag`_ in
594 your code, Django provides the ``django.core.urlresolvers.reverse()``. The
595 ``reverse()`` function has the following signature::
597 reverse(viewname, urlconf=None, args=None, kwargs=None)
599 ``viewname`` is either the function name (either a function reference, or the
600 string version of the name, if you used that form in ``urlpatterns``) or the
601 `URL pattern name`_. Normally, you won't need to worry about the
602 ``urlconf`` parameter and will only pass in the positional and keyword
603 arguments to use in the URL matching. For example::
605 from django.core.urlresolvers import reverse
608 return HttpResponseRedirect(reverse('arch-summary', args=[1945]))
610 .. _URL pattern name: `Naming URL patterns`_
615 The ``permalink()`` decorator is useful for writing short methods that return
616 a full URL path. For example, a model's ``get_absolute_url()`` method. Refer
617 to the `model API documentation`_ for more information about ``permalink()``.
619 .. _model API documentation: ../model-api/#the-permalink-decorator