コミュニティアチーブメントバーを展開する。

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

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

AEM 6.5 | 301 Redirects in page properties

Avatar

Level 1

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?

Redirects - 301.png

 

 

Thanks,

Rose

 

1 受け入れられたソリューション

Avatar

正解者
Community Advisor

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

元の投稿で解決策を見る

3 返信

Avatar

Community Advisor

Hi @jebarose_07 ,

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

You could also consider Redirect Map Manager

Hope that helps!

Regards,

Santosh


Santosh Sai

AEM BlogsLinkedIn


Avatar

正解者
Community Advisor

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

Avatar

Employee Advisor

@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