Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

In universal editor Redirection

Avatar

Level 1

Hi team,

I have a requirement. We are maintaining some pages in AEM and some of them in EDS using the universal editor. I need to redirect some pages from EDS to AEM. I noticed that we can create a redirect file at the root level to achieve this, but I don’t have the proper documentation. Could you please share the related document?

Thanks


@arunpatidar 

4 Replies

Avatar

Community Advisor

Hi @KONDISR 

Do you need to redirect when editing the page or for end user.

 

For Editing the page, you can create another EDIT button which will open page with universal Editor.

For end user, you need to write rules at CDN to forward traffic to different origins(AEM, EDS etc)

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 1

Hi @arunpatidar,

Thanks for the quick response

I need CDN to forward traffic to different origins (AEM, EDS, etc.). Currently, we are migrating a set of sub-pages from AEM to EDS. For this, we have written regex match patterns to route traffic from AEM to EDS

However, we are facing some challenges. In AEM, some pages were created with URLs containing -- and numbers. In EDS, we have removed those characters and created new clean URLs. If a request comes with -- and numbers, those URLs should redirect to the corresponding new page in EDS

Example:

  • In AEM: /events/event-name--12345

  • In EDS: /events/event-name

So if a user tries to access /events/event-name--12345, it should redirect to /events/event-name in EDS.

We have already written regex rules to redirect all subpages to EDS, and once the request reaches EDS, we have redirect to new url in eds. pls suggest any approach.

Thanks.

 

Avatar

Community Advisor

Hi @KONDISR 

You can do redirect, redirect first event-name--12345 to event-name name and then forward request to intended origin.

 

Pipeline free redirect - https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/con...


Other options for redirect

https://experienceleague.adobe.com/en/docs/experience-manager-learn/foundation/administration/url-re... 

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 1

Hi @arunpatidar 

We can first redirect event-name--12345 to event-name and then forward the request to the intended origin. However, since the CDN configuration file (cdn.yaml) in AEM should not exceed 100KB (as per the documentation), we are exploring alternative solutions instead of making these changes directly in the CDN file, as we have a large number of pages to redirect.