mirror of https://github.com/django/django.git
Fixed #19444 -- Clarified IGNORABLE_404_URLS documentation
This commit is contained in:
parent
66dfcc10b3
commit
53b879f045
|
@ -1119,9 +1119,11 @@ Default: ``()``
|
||||||
|
|
||||||
List of compiled regular expression objects describing URLs that should be
|
List of compiled regular expression objects describing URLs that should be
|
||||||
ignored when reporting HTTP 404 errors via email (see
|
ignored when reporting HTTP 404 errors via email (see
|
||||||
:doc:`/howto/error-reporting`). Use this if your site does not provide a
|
:doc:`/howto/error-reporting`). Regular expressions are matched against
|
||||||
commonly requested file such as ``favicon.ico`` or ``robots.txt``, or if it
|
:meth:`request's full paths <django.http.HttpRequest.get_full_path>` (including
|
||||||
gets hammered by script kiddies.
|
query string, if any). Use this if your site does not provide a commonly
|
||||||
|
requested file such as ``favicon.ico`` or ``robots.txt``, or if it gets
|
||||||
|
hammered by script kiddies.
|
||||||
|
|
||||||
This is only used if :setting:`SEND_BROKEN_LINK_EMAILS` is set to ``True`` and
|
This is only used if :setting:`SEND_BROKEN_LINK_EMAILS` is set to ``True`` and
|
||||||
``CommonMiddleware`` is installed (see :doc:`/topics/http/middleware`).
|
``CommonMiddleware`` is installed (see :doc:`/topics/http/middleware`).
|
||||||
|
|
Loading…
Reference in New Issue