{"id":62795,"date":"2024-02-13T10:37:45","date_gmt":"2024-02-13T15:37:45","guid":{"rendered":"https:\/\/memberpress.com\/docs\/add-unauthorized-redirection-exclusions\/"},"modified":"2024-02-27T08:54:14","modified_gmt":"2024-02-27T13:54:14","slug":"add-unauthorized-redirection-exclusions","status":"publish","type":"ht_kb","link":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/","title":{"rendered":"Ausnahmen f\u00fcr nicht autorisierte Umleitungen hinzuf\u00fcgen"},"content":{"rendered":"<p>MemberPress unautorisierte Umleitung ist eine gro\u00dfartige Funktion, die Ihre unautorisierten Besucher auf die Seite umleitet, die Sie in den MemberPress-Einstellungen angegeben haben. Weitere Details zur Funktionsweise dieser Funktion finden Sie in dem folgenden Dokument: <a href=\"https:\/\/memberpress.com\/de\/docs\/unauthorized-redirect\/\">Verwendung der unautorisierten Umleitung<\/a>.<\/p>\n\n\n\n<p>Die unautorisierte Umleitung wird auf alle gesch\u00fctzten Inhalte Ihrer Website angewendet, und dies ist m\u00f6glicherweise nicht in allen F\u00e4llen die beste L\u00f6sung. In diesem Dokument finden Sie das Code-Snippet und eine Erkl\u00e4rung, wie Sie es verwenden k\u00f6nnen, um die unautorisierte Umleitung f\u00fcr bestimmte Beitr\u00e4ge und Seiten zu deaktivieren.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wie macht man das?<\/h2>\n\n\n\n<p>Mit dem folgenden Codeschnipsel k\u00f6nnen Sie die unautorisierte Umleitung f\u00fcr bestimmte Seiten und Beitr\u00e4ge auf der Grundlage ihrer IDs deaktivieren:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">\/\/ Disable MemberPress unauthorized redirection on a specific page or post\n\nadd_filter('mepr-pre-run-rule-redirection', function($redirect, $url, $delim){\n     global $post;\n     if($post->ID === 123) {\n          $redirect = false;\n     }\n     return $redirect;\n}, 10, 3);<\/pre>\n\n\n\n<p>Das obige Codebeispiel schlie\u00dft die gesch\u00fctzte Seite oder den Beitrag mit der ID 123 von der nicht autorisierten Umleitung aus. Wenn also ein nicht autorisierter Benutzer versucht, auf diese Seite oder diesen Beitrag zuzugreifen, wird er nicht weitergeleitet, sondern sieht die nicht autorisierte Meldung auf dieser gesch\u00fctzten Seite. Die unautorisierte Nachricht folgt Ihren MemberPress-Einstellungen (unter <i>Dashboard &gt; MemberPress &gt; Einstellungen &gt; Registerkarte \u201eSeiten\u201c &gt; Standardmeldung f\u00fcr nicht autorisierte Benutzer<\/i>) oder Ihre Regeleinstellungen, falls aktiviert.<\/p>\n\n\n\n<p>Um die Seite oder den Beitrag auf Ihrer Website auszuschlie\u00dfen, m\u00fcssen Sie die im Beispiel verwendete ID (123) durch die ID Ihrer Seite oder Ihres Beitrags ersetzen, f\u00fcr die die Umleitung deaktiviert werden soll. Sie \u00e4ndern die ID der Seite oder des Beitrags in der folgenden Zeile:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">if($post-&gt;ID === <u><b>123<\/b><\/u>) {<\/pre>\n\n\n\n<p>Wenn Sie die nicht autorisierte Weiterleitung f\u00fcr mehrere Beitr\u00e4ge und Seiten deaktivieren m\u00f6chten, k\u00f6nnen Sie den Code wie folgt \u00e4ndern:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-background\" style=\"background-color:#f5f5f5\">\/\/ Unerlaubte Weiterleitung von MemberPress auf mehreren Seiten und\/oder Beitr\u00e4gen deaktivieren\n\nadd_filter('mepr-pre-run-rule-redirection', function($redirect, $url, $delim) {\n     global $post;\n     if(in_array($post-&gt;ID, array(123, 223, 323))) {\n          $redirect = false;\n     }\n     return $redirect;\n}, 10, 3);<\/pre>\n\n\n\n<p>\u00c4hnlich wie bei der ersten Version des Codes m\u00fcssen Sie die im Beispiel verwendeten IDs (123, 223, 323) durch die IDs Ihrer Seiten und Beitr\u00e4ge ersetzen. Sie w\u00fcrden die ID der Seite oder des Beitrags in der folgenden Zeile \u00e4ndern:<\/p>\n\n\n\n<p class=\"has-background\" style=\"background-color:#f5f5f5\">if(in_array($post-&gt;ID, array(<u><b>123, 223, 323<\/b><\/u>))) {<\/p>\n\n\n\n<p class=\"wp-block-ht-blocks-messages wp-block-hb-message wp-block-hb-message--withicon is-style-danger\">\n\t<strong>HINWEIS:<\/strong> Sie k\u00f6nnen die IDs von Seiten und Beitr\u00e4gen in dem Array mischen. Die Reihenfolge ist nicht wichtig.<\/p>\n\n\n\n<p>Sobald Sie den Code mit den IDs Ihrer Seiten und Beitr\u00e4ge aktualisiert haben, k\u00f6nnen Sie das Code-Snippet auf Ihrer Website in die <i><b>funktionen.php<\/b><\/i> Datei Ihres Child-Themes. Als Alternative k\u00f6nnen Sie die <a href=\"https:\/\/wordpress.org\/plugins\/insert-headers-and-footers\/\">WPCode<\/a> Plugin. Im folgenden Dokument finden Sie eine Schritt-f\u00fcr-Schritt-Anleitung f\u00fcr <a href=\"https:\/\/memberpress.com\/de\/docs\/how-to-add-custom-code-snippets-in-wpcode\/\">Hinzuf\u00fcgen von benutzerdefinierten Codefragmenten in WPCode<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Hilfe?<\/h2>\n\n\n\n<p>Funktioniert es nicht so, wie Sie es sich vorstellen, auch wenn Sie die Anweisungen im Video befolgt haben? Schicken Sie uns einfach eine<br><a href=\"https:\/\/memberpress.com\/de\/support\/\" target=\"_blank\" rel=\"noopener\">Support-Ticket<\/a>!<\/p>","protected":false},"excerpt":{"rendered":"<p>MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might [\u2026]<\/p>\n","protected":false},"author":62252,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_strive_editorial_status":"not-started","_strive_copy_of":0,"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","_strive_checklists":"\"\"","_strive_active_checklist":"62291e2bb2422","footnotes":""},"ht-kb-category":[1340,1322],"ht-kb-tag":[],"class_list":{"0":"post-62795","1":"ht_kb","2":"type-ht_kb","3":"status-publish","4":"format-standard","6":"ht_kb_category-rules","7":"ht_kb_category-protecting-content","8":"entry"},"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Nikola M\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"de_DE\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberPress\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Add Unauthorized Redirection Exclusions | MemberPress\" \/>\n\t\t<meta property=\"og:description\" content=\"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1650\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1275\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-13T15:37:45+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-02-27T13:54:14+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/memberpress\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@memberpress\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Add Unauthorized Redirection Exclusions | MemberPress\" \/>\n\t\t<meta name=\"twitter:description\" content=\"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#article\",\"name\":\"Add Unauthorized Redirection Exclusions | MemberPress\",\"headline\":\"Add Unauthorized Redirection Exclusions\",\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#articleImage\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"datePublished\":\"2024-02-13T10:37:45-05:00\",\"dateModified\":\"2024-02-27T08:54:14-05:00\",\"inLanguage\":\"de-DE\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#webpage\"},\"articleSection\":\"Rules and Redirections, Protecting Content\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/memberpress.com\\\/de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"name\":\"Advanced Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"position\":2,\"name\":\"Advanced Topics\",\"item\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/advanced-topics\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/custom-codes\\\/#listItem\",\"name\":\"Custom Codes\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/custom-codes\\\/#listItem\",\"position\":3,\"name\":\"Custom Codes\",\"item\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/custom-codes\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/rules\\\/#listItem\",\"name\":\"Rules and Redirections\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/advanced-topics\\\/#listItem\",\"name\":\"Advanced Topics\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/rules\\\/#listItem\",\"position\":4,\"name\":\"Rules and Redirections\",\"item\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/rules\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#listItem\",\"name\":\"Add Unauthorized Redirection Exclusions\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/custom-codes\\\/#listItem\",\"name\":\"Custom Codes\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#listItem\",\"position\":5,\"name\":\"Add Unauthorized Redirection Exclusions\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/doc-categories\\\/rules\\\/#listItem\",\"name\":\"Rules and Redirections\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#organization\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"url\":\"https:\\\/\\\/memberpress.com\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#organizationLogo\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"image\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/memberpress\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/memberpressplugin\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/MemberPressPlugin\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/memberpress\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\",\"url\":\"https:\\\/\\\/memberpress.com\\\/de\\\/blog\\\/author\\\/nikolacaseproof-com\\\/\",\"name\":\"Nikola M\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/litespeed\\\/avatar\\\/1edf820c48f9c430f380efe81887b154.jpg?ver=1776350726\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#webpage\",\"url\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/\",\"name\":\"Add Unauthorized Redirection Exclusions | MemberPress\",\"description\":\"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might\",\"inLanguage\":\"de-DE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/docs\\\/add-unauthorized-redirection-exclusions\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/blog\\\/author\\\/nikolacaseproof-com\\\/#author\"},\"datePublished\":\"2024-02-13T10:37:45-05:00\",\"dateModified\":\"2024-02-27T08:54:14-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/memberpress.com\\\/de\\\/\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"inLanguage\":\"de-DE\",\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/de\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Add Unauthorized Redirection Exclusions | MemberPress<\/title>\n\n","aioseo_head_json":{"title":"Ausnahmen f\u00fcr nicht autorisierte Umleitungen hinzuf\u00fcgen | MemberPress","description":"MemberPress unautorisierte Umleitung ist eine gro\u00dfartige Funktion, die Ihre unautorisierten Besucher auf die Seite umleitet, die Sie in den MemberPress-Einstellungen angegeben haben. Weitere Details zur Funktionsweise dieser Funktion finden Sie im folgenden Dokument: Verwendung der unautorisierten Umleitung. Die unautorisierte Umleitung wird auf alle gesch\u00fctzten Inhalte Ihrer Website angewendet, und das kann sein","canonical_url":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#article","name":"Add Unauthorized Redirection Exclusions | MemberPress","headline":"Add Unauthorized Redirection Exclusions","author":{"@id":"https:\/\/memberpress.com\/de\/blog\/author\/nikolacaseproof-com\/#author"},"publisher":{"@id":"https:\/\/memberpress.com\/de\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/de\/#articleImage","width":1650,"height":1275,"caption":"memberpress logo icon"},"datePublished":"2024-02-13T10:37:45-05:00","dateModified":"2024-02-27T08:54:14-05:00","inLanguage":"de-DE","mainEntityOfPage":{"@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#webpage"},"isPartOf":{"@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#webpage"},"articleSection":"Rules and Redirections, Protecting Content"},{"@type":"BreadcrumbList","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de#listItem","position":1,"name":"Home","item":"https:\/\/memberpress.com\/de","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/#listItem","name":"Advanced Topics"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/#listItem","position":2,"name":"Advanced Topics","item":"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/#listItem","name":"Custom Codes"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/#listItem","position":3,"name":"Custom Codes","item":"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/rules\/#listItem","name":"Rules and Redirections"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/#listItem","name":"Advanced Topics"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/rules\/#listItem","position":4,"name":"Rules and Redirections","item":"https:\/\/memberpress.com\/de\/doc-categories\/rules\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#listItem","name":"Add Unauthorized Redirection Exclusions"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/#listItem","name":"Custom Codes"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#listItem","position":5,"name":"Add Unauthorized Redirection Exclusions","previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/de\/doc-categories\/rules\/#listItem","name":"Rules and Redirections"}}]},{"@type":"Organization","@id":"https:\/\/memberpress.com\/de\/#organization","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","url":"https:\/\/memberpress.com\/de\/","logo":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#organizationLogo","width":1650,"height":1275,"caption":"memberpress logo icon"},"image":{"@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/memberpress\/","https:\/\/www.pinterest.com\/memberpressplugin\/","https:\/\/www.youtube.com\/c\/MemberPressPlugin","https:\/\/www.linkedin.com\/company\/memberpress\/"]},{"@type":"Person","@id":"https:\/\/memberpress.com\/de\/blog\/author\/nikolacaseproof-com\/#author","url":"https:\/\/memberpress.com\/de\/blog\/author\/nikolacaseproof-com\/","name":"Nikola M","image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/litespeed\/avatar\/1edf820c48f9c430f380efe81887b154.jpg?ver=1776350726"}},{"@type":"WebPage","@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#webpage","url":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/","name":"Add Unauthorized Redirection Exclusions | MemberPress","description":"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might","inLanguage":"de-DE","isPartOf":{"@id":"https:\/\/memberpress.com\/de\/#website"},"breadcrumb":{"@id":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/#breadcrumblist"},"author":{"@id":"https:\/\/memberpress.com\/de\/blog\/author\/nikolacaseproof-com\/#author"},"creator":{"@id":"https:\/\/memberpress.com\/de\/blog\/author\/nikolacaseproof-com\/#author"},"datePublished":"2024-02-13T10:37:45-05:00","dateModified":"2024-02-27T08:54:14-05:00"},{"@type":"WebSite","@id":"https:\/\/memberpress.com\/de\/#website","url":"https:\/\/memberpress.com\/de\/","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","inLanguage":"de-DE","publisher":{"@id":"https:\/\/memberpress.com\/de\/#organization"}}]},"og:locale":"de_DE","og:site_name":"MemberPress","og:type":"article","og:title":"Add Unauthorized Redirection Exclusions | MemberPress","og:description":"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might","og:url":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/","og:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:secure_url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","og:image:width":1650,"og:image:height":1275,"article:published_time":"2024-02-13T15:37:45+00:00","article:modified_time":"2024-02-27T13:54:14+00:00","article:publisher":"https:\/\/www.facebook.com\/memberpress\/","twitter:card":"summary_large_image","twitter:site":"@memberpress","twitter:title":"Add Unauthorized Redirection Exclusions | MemberPress","twitter:description":"MemberPress unauthorized redirection is a great feature that will redirect your unauthorized visitors to the page you specified in MemberPress settings. You can find more details on how this feature works in the following document: Using the Unauthorized Redirect. The unauthorized redirection will be applied to all protected content on your site, and this might","twitter:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg"},"aioseo_meta_data":{"post_id":"62795","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2025-10-09 22:10:16","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2024-02-13 15:37:46","updated":"2026-03-03 14:52:31"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/de\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/\" title=\"Advanced Topics\">Advanced Topics<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/\" title=\"Custom Codes\">Custom Codes<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/de\/doc-categories\/rules\/\" title=\"Rules and Redirections\">Rules and Redirections<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tAdd Unauthorized Redirection Exclusions\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/memberpress.com\/de"},{"label":"Advanced Topics","link":"https:\/\/memberpress.com\/de\/doc-categories\/advanced-topics\/"},{"label":"Custom Codes","link":"https:\/\/memberpress.com\/de\/doc-categories\/custom-codes\/"},{"label":"Rules and Redirections","link":"https:\/\/memberpress.com\/de\/doc-categories\/rules\/"},{"label":"Add Unauthorized Redirection Exclusions","link":"https:\/\/memberpress.com\/de\/docs\/add-unauthorized-redirection-exclusions\/"}],"_links":{"self":[{"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/ht-kb\/62795","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/users\/62252"}],"replies":[{"embeddable":true,"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/comments?post=62795"}],"version-history":[{"count":0,"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/ht-kb\/62795\/revisions"}],"wp:attachment":[{"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/media?parent=62795"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/ht-kb-category?post=62795"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/memberpress.com\/de\/wp-json\/wp\/v2\/ht-kb-tag?post=62795"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}