diff --git a/django/template/utils.py b/django/template/utils.py
index 3303c1ccb7eded6af872f33a4a14734070084c7b..be2166810c089cd78030ce74b4cedfc28d9f5b14 100644
--- a/django/template/utils.py
+++ b/django/template/utils.py
@@ -90,6 +90,10 @@ class EngineHandler(object):
                     "Could not find config for '{}' "
                     "in settings.TEMPLATES".format(alias))
 
+            # If importing or initializing the backend raises an exception,
+            # self._engines[alias] isn't set and this code may get executed
+            # again, so we must preserve the original params. See #24265.
+            params = params.copy()
             backend = params.pop('BACKEND')
             engine_cls = import_string(backend)
             engine = engine_cls(params)
diff --git a/tests/template_backends/test_utils.py b/tests/template_backends/test_utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..3d2de990159fcbb0be66e1fa4f1f91c631d686a2
--- /dev/null
+++ b/tests/template_backends/test_utils.py
@@ -0,0 +1,37 @@
+from django.core.exceptions import ImproperlyConfigured
+from django.template import engines
+from django.test import SimpleTestCase, override_settings
+
+
+class TemplateStringsTests(SimpleTestCase):
+
+    @override_settings(TEMPLATES=[{
+        'BACKEND': 'raise.import.error',
+    }])
+    def test_backend_import_error(self):
+        """
+        Failing to import a backend keeps raising the original import error.
+
+        Regression test for #24265.
+        """
+        with self.assertRaises(ImportError):
+            engines.all()
+        with self.assertRaises(ImportError):
+            engines.all()
+
+    @override_settings(TEMPLATES=[{
+        'BACKEND': 'django.template.backends.django.DjangoTemplates',
+        # Incorrect: APP_DIRS and loaders are mutually incompatible.
+        'APP_DIRS': True,
+        'OPTIONS': {'loaders': []},
+    }])
+    def test_backend_improperly_configured(self):
+        """
+        Failing to initialize a backend keeps raising the original exception.
+
+        Regression test for #24265.
+        """
+        with self.assertRaises(ImproperlyConfigured):
+            engines.all()
+        with self.assertRaises(ImproperlyConfigured):
+            engines.all()