diff options
| author | Maarten Breddels <maartenbreddels@gmail.com> | 2024-08-21 19:56:35 +0200 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-08-23 18:07:47 +0200 |
| commit | cdcd604ef8f650533eff6bd63a517ebb4ffddf96 (patch) | |
| tree | baf1ae101f92112e6c4c2f94f348458fec922062 | |
| parent | f72bbd44808452f4a70be5f7b9d35e46dee32e2d (diff) | |
Fixed #35703 -- Made technical_404_response() respect SCRIPT_NAME to return default_urlconf().
| -rw-r--r-- | django/views/debug.py | 2 | ||||
| -rw-r--r-- | tests/view_tests/tests/test_debug.py | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py index 38f1338461..10b4d22030 100644 --- a/django/views/debug.py +++ b/django/views/debug.py @@ -620,7 +620,7 @@ def technical_404_response(request, exception): else: resolved = False if not tried or ( # empty URLconf - request.path == "/" + request.path_info == "/" and len(tried) == 1 and len(tried[0]) == 1 # default URLconf and getattr(tried[0][0], "app_name", "") diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py index 4b0a7cf49d..c65514a170 100644 --- a/tests/view_tests/tests/test_debug.py +++ b/tests/view_tests/tests/test_debug.py @@ -398,6 +398,15 @@ class DebugViewTests(SimpleTestCase): response, "<h1>The install worked successfully! Congratulations!</h1>" ) + @override_settings( + ROOT_URLCONF="view_tests.default_urls", FORCE_SCRIPT_NAME="/FORCED_PREFIX" + ) + def test_default_urlconf_script_name(self): + response = self.client.request(**{"path": "/FORCED_PREFIX/"}) + self.assertContains( + response, "<h1>The install worked successfully! Congratulations!</h1>" + ) + @override_settings(ROOT_URLCONF="view_tests.regression_21530_urls") def test_regression_21530(self): """ |
