<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dispatcher Redirection and Error Handling in Adobe Experience Manager Discussions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540523#M35404</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17518226"&gt;&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Just after creating the symlink check if the link has been established between "available" and "enabled" folder. To do the symlink you should use "ln -s" command for sharing common location.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;you can delete the file from &lt;EM&gt;enabled&lt;/EM&gt; folder. As it will take from &lt;EM&gt;available_farms&lt;/EM&gt;&amp;nbsp;for having the symlink.&lt;BR /&gt;&lt;BR /&gt;If you still facing issue, then provide the screen shot of your folder structure of conf.dispatcher.d.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Aug 2022 16:26:11 GMT</pubDate>
    <dc:creator>tb1687196</dc:creator>
    <dc:date>2022-08-11T16:26:11Z</dc:date>
    <item>
      <title>Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539591#M35165</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have the below scenario -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my rewrite rules I have written the below sequence -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;RewriteRule ^/$ /content/xyz/us/en/home-page.html [R=301,L]&lt;/PRE&gt;
&lt;P&gt;As seen the above redirect points the root request to home-page.html&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;RewriteRule ^/content/xyz/us/en/(.*)$ /$1 [NE,L,R=301]&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;As seen here we are shortening the URL to eliminate /content/xyz/us/en from the request URL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;RewriteRule ^/(.*)$ /content/xyz/us/en/$1 [NC,PT,L]&lt;/PRE&gt;
&lt;P&gt;This rewrite is being written to append the URL back again and forward to publish&lt;/P&gt;
&lt;P&gt;The above redirects are working fine for URL shortening on browser and then forwarding the complete path to publish.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. The Vhost file contains the following -&lt;/P&gt;
&lt;PRE&gt;&amp;lt;IfModule disp_apache2.c&amp;gt;&lt;BR /&gt;    # Enabled to allow rewrites to take affect and not be ignored by the dispatcher module&lt;BR /&gt;    DispatcherUseProcessedURL On&lt;BR /&gt;    # Default setting (0) to allow all errors to come from the aem instance&lt;BR /&gt;    DispatcherPassError 1&lt;BR /&gt;&amp;lt;/IfModule&amp;gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;ErrorDocument 404 /content/xyz/us/en/errors/404.html&lt;BR /&gt;ErrorDocument 500 /content/xyz/us/en/errors/500.html&lt;BR /&gt;ErrorDocument 502 /content/xyz/us/en/errors/500.html&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem is that for incorrect URLs the ErrorDocument is not being picked up - We are directly spooling the publish's error page on dispatcher.&lt;/P&gt;
&lt;P&gt;Please find the logs for the same -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;172.17.0.1 "localhost" - [05/Aug/2022:15:12:21 +0000] "GET /content/xyz/us/en/abc.html HTTP/1.1" 301 233 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;172.17.0.1 "localhost" - [05/Aug/2022:15:12:21 +0000] "GET /abc.html HTTP/1.1" 404 2400 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[05/Aug/2022:15:12:21 +0000] "GET /content/xyz/us/en/abc.html HTTP/1.1" 404 none [publishfarm/0] 9ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As seen the Dispatcher is not showing the 404 page from ErrorDocument.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rohangargTA_0-1659712444625.png" style="width: 400px;"&gt;&lt;img src="https://experienceleaguecommunities.adobe.com/t5/image/serverpage/image-id/46185iA6930DECE4B6B74C/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="rohangargTA_0-1659712444625.png" alt="rohangargTA_0-1659712444625.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please let me know where the issue is ?&lt;BR /&gt;&lt;LI-USER uid="6786635"&gt;&lt;/LI-USER&gt;&amp;nbsp;,&amp;nbsp;&lt;LI-USER uid="5042721"&gt;&lt;/LI-USER&gt;&amp;nbsp;- Any quick help on this ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 15:15:13 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539591#M35165</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-05T15:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539629#M35166</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;LI-USER uid="17518226"&gt;&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try the below steps and see if this helps&lt;BR /&gt;Step 1: Try commenting the custom rewrites file path in your vhost -&amp;gt; rerun and give a complete url which is invalid (/content/xyz/us/en/abc.html) and pls check If this page takes you to the /errors/404.html&lt;/P&gt;
&lt;P&gt;Step 2: change the error document url to shortened url : ErrorDocument 404 /errors/404.html and from your rewrites remove your 2nd rewrite as below&lt;/P&gt;
&lt;P&gt;RewriteRule ^/$ /content/xyz/us/en/home-page.html [PT,L]&lt;BR /&gt;RewriteRule ^/content/xyz/us/en/(.*)$ /$1 [NE,L,R=301] -&amp;gt; Remove this rewrite&lt;BR /&gt;RewriteRule ^/(.*)$ /content/xyz/us/en/$1 [NC,PT,L]&lt;/P&gt;
&lt;P&gt;now try invalid short url -&amp;gt; /abc.html and check if this takes you to the error page&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 17:48:41 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539629#M35166</guid>
      <dc:creator>achennapragada</dc:creator>
      <dc:date>2022-08-05T17:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539718#M35167</link>
      <description>&lt;P&gt;&lt;LI-USER uid="6786635"&gt;&lt;/LI-USER&gt;&amp;nbsp;- Sorry to disturb over this again, hope you can provide some insight into this -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I erase all my rewrite rules and run there are 2 use cases -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the requests originates with /content and is .html based then publish's error page gets thrown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use Case 1 - For a request originating with /content and has .html - The publish's error page is being shown -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;172.17.0.1 "localhost" - [06/Aug/2022:08:36:58 +0000] "GET /content/abc.html?nocache=true1212 HTTP/1.1" 404 2424 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[06/Aug/2022:08:36:58 +0000] "GET /content/abc.html?nocache=true1212 HTTP/1.1" 404 none [publishfarm/0] 17ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use Case 2 - For a request origination with anything but /content and non html - The dispatcher is showing errordocument page.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;172.17.0.1 "localhost" - [06/Aug/2022:08:37:12 +0000] "GET /xyz/abc.html?nocache=true12121 HTTP/1.1" 404 2945 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[06/Aug/2022:08:37:12 +0000] "GET /content/sitename/us/en/errors/404.html HTTP/1.1" - hit [publishfarm/-] 2ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;172.17.0.1 "localhost" - [06/Aug/2022:08:54:34 +0000] "GET /content/abc/rgarg.json?nocahce=true HTTP/1.1" 404 2948 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[06/Aug/2022:08:54:34 +0000] "GET /content/sitename/us/en/errors/404.html HTTP/1.1" - hit [publishfarm/-] 1ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you think of a reason why it may be behaving that ways ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 08:53:42 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539718#M35167</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-06T08:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539719#M35168</link>
      <description>&lt;P&gt;&lt;LI-USER uid="17384697"&gt;&lt;/LI-USER&gt;&amp;nbsp;- Thanks for your response - I just cleared all my redirects and tried&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I erase all my rewrite rules and run there are 2 use cases -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the requests originates with /content and is .html based then publish's error page gets thrown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use Case 1 - For a request originating with /content and is .html based - The publish's error page is being shown -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;172.17.0.1 "localhost" - [06/Aug/2022:08:36:58 +0000] "GET /content/abc.html?nocache=true1212 HTTP/1.1" 404 2424 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[06/Aug/2022:08:36:58 +0000] "GET /content/abc.html?nocache=true1212 HTTP/1.1" 404 none [publishfarm/0] 17ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use Case 2 - For a request origination with anything but /content or is not .html based- The dispatcher is showing errordocument page.&lt;BR /&gt;172.17.0.1 "localhost" - [06/Aug/2022:08:37:12 +0000] "GET /xyz/abc.html?nocache=true12121 HTTP/1.1" 404 2945 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0"&lt;BR /&gt;[06/Aug/2022:08:37:12 +0000] "GET /content/sitename/us/en/errors/404.html HTTP/1.1" - hit [publishfarm/-] 2ms "localhost"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea what might be causing the two to behave differently ?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 08:54:19 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539719#M35168</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-06T08:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539737#M35169</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17518226"&gt;&lt;/LI-USER&gt;&amp;nbsp;, please try these rewrites.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;# rewrites for root redirect&lt;BR /&gt;RewriteRule ^/?$ /content/xyz/us/en.html [PT,L]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#Redirect for all the shortened pages ending with .html&lt;BR /&gt;RewriteCond %{REQUEST_URI} !^/?(etc.clientlibs|resources|libs|content|libs|apps) [NC]&lt;BR /&gt;RewriteRule ^/(.*) /content/xyz/us/en/$1 [PT,L,QSA]&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 22:09:54 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539737#M35169</guid>
      <dc:creator>achennapragada</dc:creator>
      <dc:date>2022-08-06T22:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539739#M35170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I would suggest to test your redirect rules here with all use cases which you want to achieve like mapping and all as well.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://technicalseo.com/tools/htaccess/" target="_blank"&gt;https://technicalseo.com/tools/htaccess/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 11:52:23 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/539739#M35170</guid>
      <dc:creator>arunpatidar</dc:creator>
      <dc:date>2022-08-06T11:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540073#M35380</link>
      <description>&lt;P&gt;&lt;LI-USER uid="17384697"&gt;&lt;/LI-USER&gt;&amp;nbsp;- The rewrite rules are fine and validated on cloud as well.&lt;/P&gt;
&lt;P&gt;The issue was only on local and that too because the vhost in enabled folders are not symlinks but exact replicas from the available folders.&lt;/P&gt;
&lt;P&gt;These redirects on cloud are working fine as intended.&lt;/P&gt;
&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 11:56:15 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540073#M35380</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-09T11:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540076#M35381</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue above was present as I was using exact replicas of vhosts in the enabled folders.&lt;/P&gt;
&lt;P&gt;In my cloud instance as the enabled folder has symlinks, the above rewrite rules worked correctly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my local however, I still get the below error when I create symlinks for enabled vhosts using "mklink link target"-&lt;/P&gt;
&lt;P&gt;C:\Users\rohan.garg\aem-sdk\dispatcher\aem-sdk-dispatcher-tools-2.0.91-windows\bin&amp;gt;docker_run D:\Project\Branches\Dispatcher_New\aemrepo\dispatcher\src host.docker.internal:4507 80&lt;BR /&gt;values.csv not found in deployment folder D:\Project\Branches\Dispatcher_New\aemrepo\dispatcher\src - using files in 'conf.d' and 'conf.dispatcher.d' subfolders directly&lt;BR /&gt;processing configuration subfolder 'conf.d'&lt;BR /&gt;processing configuration subfolder 'conf.dispatcher.d'&lt;BR /&gt;docker: Error response from daemon: mkdir D:\Project\Branches\Dispatcher_New\aemrepo\dispatcher\src\conf.dispatcher.d\enabled_farms\default.farm: Cannot create a file when that file already exists.&lt;BR /&gt;See 'docker run --help'.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 11:58:04 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540076#M35381</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-09T11:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540303#M35383</link>
      <description>&lt;P&gt;&lt;LI-USER uid="6786635"&gt;&lt;/LI-USER&gt;&amp;nbsp;- Thanks for recommending this tool, its an excellent tool.&lt;/P&gt;
&lt;P&gt;However, There is a small issue&lt;BR /&gt;&lt;BR /&gt;My redirect rules are written correctly and working fine as expected on the tool -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;RewriteCond %{REQUEST_FILENAME} !-d&lt;BR /&gt;RewriteRule ^([^.]*[^./])$ $1.html [R=301,L]&lt;BR /&gt;&lt;BR /&gt;Test URL -&amp;nbsp;&lt;A href="https://brandA.com/content/brandA/us/en/home" target="_blank"&gt;https://brandA.com/content/brandA/us/en/home&lt;/A&gt;&lt;BR /&gt;New URL -&amp;nbsp;&lt;A href="https://brandA.com/content/brandA/us/en/home.html" target="_blank"&gt;https://brandA.com/content/brandA/us/en/home.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, on the dev environment what happens is as below -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://brandA.com/content/brandA/us/en/home" target="_blank"&gt;https://brandA.com/content/brandA/us/en/home&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://brandA.com/content/brandA/us/en/home" target="_blank"&gt;http://brandA.com/content/brandA/us/en/home.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://brandA.com/content/brandA/us/en/home.html" target="_blank"&gt;https://brandA.com/content/brandA/us/en/home.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically every redirect rule first moves the request to http before moving it back again to https.&lt;/P&gt;
&lt;P&gt;This is leading to 2X requests in the network tab in browser and other issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My virtual hosts are all running on 80 port as below but this was done to handle http based requests as well-&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;VirtualHost *:80&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you suggest what can cause this https to http and then back to https URL changes ?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 14:57:51 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540303#M35383</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-10T14:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540418#M35389</link>
      <description>&lt;P&gt;&lt;LI-USER uid="17518226"&gt;&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure what could be the issue here, it could be some of the redirects which causing this.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 07:37:05 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540418#M35389</guid>
      <dc:creator>arunpatidar</dc:creator>
      <dc:date>2022-08-11T07:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540523#M35404</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17518226"&gt;&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;Just after creating the symlink check if the link has been established between "available" and "enabled" folder. To do the symlink you should use "ln -s" command for sharing common location.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;you can delete the file from &lt;EM&gt;enabled&lt;/EM&gt; folder. As it will take from &lt;EM&gt;available_farms&lt;/EM&gt;&amp;nbsp;for having the symlink.&lt;BR /&gt;&lt;BR /&gt;If you still facing issue, then provide the screen shot of your folder structure of conf.dispatcher.d.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 16:26:11 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/540523#M35404</guid>
      <dc:creator>tb1687196</dc:creator>
      <dc:date>2022-08-11T16:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dispatcher Redirection and Error Handling</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/541043#M35415</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Previously the redirects were in below format -&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ErrorDocument 404 /errors/404.html&lt;BR /&gt;ErrorDocument 500 /errors/500.html&lt;BR /&gt;ErrorDocument 502 /errors/500.html&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Changing them to below format ensured the URLs were also retained while showing page content from below URLs -&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ErrorDocument 404 /errors/404/&lt;BR /&gt;ErrorDocument 500 /errors/500/&lt;BR /&gt;ErrorDocument 502 /errors/502/&lt;/PRE&gt;
&lt;P&gt;Update - On further refactoring of the redirect rules, specifying the full relative path to DOCROOT also worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ErrorDocument 404 /content/brandA/us/en/errors/404/&lt;BR /&gt;ErrorDocument 500 /content/brandA/us/en/errors/500/&lt;BR /&gt;ErrorDocument 502 /content/brandA/us/en/errors/502/&lt;/PRE&gt;
&lt;P&gt;So even though the exact cause is unknown but tweaking the redirect rules solved the issue!&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 05:14:34 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/dispatcher-redirection-and-error-handling/m-p/541043#M35415</guid>
      <dc:creator>Rohan_Garg</dc:creator>
      <dc:date>2022-08-19T05:14:34Z</dc:date>
    </item>
  </channel>
</rss>

