Ticket #11092: append_slash_doc.patch

File append_slash_doc.patch, 723 bytes (added by mikelim, 15 years ago)

Added documentation about APPEND_SLASH behaviour.

  • docs/ref/settings.txt

     
    9494``CommonMiddleware`` is installed (see :ref:`topics-http-middleware`). See also
    9595``PREPEND_WWW``.
    9696
     97How it works is that when a URL cannot be found (404), the server will issue
     98a redirect to the URL appended with a trailing slash.
     99
     100Note that when ``DEBUG`` is turned on, this setting is disabled. This is
     101because when you're debugging, generally, you want to actually see errors,
     102rather than have the server try to fix them for you.
     103
    97104.. setting:: AUTHENTICATION_BACKENDS
    98105
    99106AUTHENTICATION_BACKENDS
Back to Top