diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-93188-PossibilityToDisableHreflangPerPage.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-93188-PossibilityToDisableHreflangPerPage.rst
new file mode 100644
index 0000000000000000000000000000000000000000..e11174071534b00e50be462de8886a747bc61960
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/master/Feature-93188-PossibilityToDisableHreflangPerPage.rst
@@ -0,0 +1,32 @@
+.. include:: ../../Includes.txt
+
+==========================================================
+Feature: #93188 - Possibility to disable hreflang per page
+==========================================================
+
+See :issue:`93188`
+
+Description
+===========
+
+Although it should not be needed to disable the hreflang generation, people might
+have a reason to disable the hreflang generation. If for some reason core does not
+render the proper hreflang tags and also the PSR-14 event called `ModifyHrefLangTagsEvent`
+is not enough, you are now able to disable the generation of the hreflang tags
+via TypoScript. This can be done per page or part of your tree depending on where
+you set the configuration.
+
+To disable the hreflang generation, you can add the following line to your
+TypoScript setup.
+
+.. code-block:: typoscript
+
+   config.disableHrefLang = 1
+
+
+Impact
+======
+
+Only when you set this option, the hreflang generation will be skipped.
+
+.. index:: Frontend, TypoScript, ext:seo
diff --git a/typo3/sysext/frontend/Classes/Http/RequestHandler.php b/typo3/sysext/frontend/Classes/Http/RequestHandler.php
index 15937ba32146dd552aababe6863e87969eecc33b..e32960852d7d60ac26cdfe34f31af5d0e87748d8 100644
--- a/typo3/sysext/frontend/Classes/Http/RequestHandler.php
+++ b/typo3/sysext/frontend/Classes/Http/RequestHandler.php
@@ -1011,6 +1011,10 @@ class RequestHandler implements RequestHandlerInterface
 
     protected function generateHrefLangTags(TypoScriptFrontendController $controller, ServerRequestInterface $request): void
     {
+        if ($controller->config['config']['disableHrefLang'] ?? false) {
+            return;
+        }
+
         $hrefLangs = $this->eventDispatcher->dispatch(
             new ModifyHrefLangTagsEvent($request)
         )->getHrefLangs();
diff --git a/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLang.typoscript b/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLang.typoscript
index 100db96b8964d1a495cb68a4f0ed475602ca5016..e702a36f490a1c97b288fa7122a6339c61db2f58 100644
--- a/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLang.typoscript
+++ b/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLang.typoscript
@@ -10,3 +10,7 @@ page {
     10 = TEXT
     10.value = Test
 }
+
+[page["uid"] == 1500]
+  config.disableHrefLang = 1
+[end]
diff --git a/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLangScenario.yml b/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLangScenario.yml
index 6553054ba94eed77becf4ea42dae134900fe2fe8..6b624534f470e445b65bf29f9c6182f5a961010e 100644
--- a/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLangScenario.yml
+++ b/typo3/sysext/seo/Tests/Functional/Fixtures/HrefLangScenario.yml
@@ -57,3 +57,7 @@ entities:
           languageVariants:
             - self: {id: 1401, title: 'DE: Produkte', language: 1, slug: '/produkte'}
             - self: {id: 1402, title: 'DE-CH: Produkte', language: 2, slug: '/produkte'}
+        - self: {id: 1500, title: 'EN: No hreflang', slug: '/no-hreflang'}
+          languageVariants:
+            - self: {id: 1501, title: 'DE: Kein hreflang', language: 1, slug: '/kein-hreflang'}
+            - self: {id: 1502, title: 'DE-CH: Kein hreflang', language: 2, slug: '/kein-hreflang'}
diff --git a/typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php b/typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
index 49e54f80012cbd5520895a44cc794aff28ef911e..5a3e78c39c15c6912837b6e39e97ce5f4ef042be 100644
--- a/typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
+++ b/typo3/sysext/seo/Tests/Functional/HrefLang/HrefLangGeneratorTest.php
@@ -206,10 +206,22 @@ class HrefLangGeneratorTest extends FunctionalTestCase
                 ],
                 [
                     '<link rel="alternate" hreflang="fr-FR"',
-
                 ]
             ],
-
+            'Pages with disabled hreflang generation should not render any hreflang tag' => [
+                'https://acme.com/no-hreflang',
+                [],
+                [
+                    '<link rel="alternate" hreflang="',
+                ]
+            ],
+            'Translated pages with disabled hreflang generation in original language should not render any hreflang tag' => [
+                'https://acme.com/de/kein-hreflang',
+                [],
+                [
+                    '<link rel="alternate" hreflang="',
+                ]
+            ],
         ];
     }