AEM 6.5 | 301 Redirects in page properties | Community
Skip to main content
jebarose_07
June 30, 2022
Solved

AEM 6.5 | 301 Redirects in page properties

  • June 30, 2022
  • 3 replies
  • 1050 views

Hi all,

 

I would like to do 301 redirects as below

 

https://domainname.com/test to https://domainname.com/test/ 

https://domainname.com/test1 to https://domainname.com 

https://domainname.com/test1/ to https://domainname.com 

 

Is it possible to implement this on the site page properties under the 'redirects tab' in AEM 6.5? Or what is the best method to implement this?

 

 

Thanks,

Rose

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Aditya_Chabuku

Hi @jebarose_07 , Sling Redirects basically redirect internally, but it seems like you may need it in your Prod sites. For that, you need to rely on the dispatcher to rewrite rules and redirect pages. 

something similar to this.

RewriteRule ^/ /(.+)$ https://domainname.com/test1.html [L,R=301,NE]

 

Hope this helps,

~Aditya

3 replies

SantoshSai
Community Advisor
Community Advisor
June 30, 2022

Hi @jebarose_07 ,

Please check this article for the similar purpose: https://medium.com/tech-learnings/adobe-experience-manager-aem-implementing-custom-redirect-vanity-urls-manager-857c699ccc29

You could also consider Redirect Map Manager

Hope that helps!

Regards,

Santosh

Santosh Sai
Aditya_Chabuku
Community Advisor
Aditya_ChabukuCommunity AdvisorAccepted solution
Community Advisor
June 30, 2022

Hi @jebarose_07 , Sling Redirects basically redirect internally, but it seems like you may need it in your Prod sites. For that, you need to rely on the dispatcher to rewrite rules and redirect pages. 

something similar to this.

RewriteRule ^/ /(.+)$ https://domainname.com/test1.html [L,R=301,NE]

 

Hope this helps,

~Aditya

Thanks,Aditya Chabuku
Mohit_KBansal
Adobe Employee
Adobe Employee
July 1, 2022

@jebarose_07 Consider implementing such redirects on apache/dispatcher, to avoid unnecessary request processing on the publisher, until you want your business editors to control these redirects. In this case, go with Redirect Map Manager [1] approach.

 

[1] https://adobe-consulting-services.github.io/acs-aem-commons/features/redirect-map-manager/index.html