In AEM page properties, we can set URL redirects. Adobe support informed that these are 302 redirects.
Is there a way to override this so by default they become 301 redirects and not 302?
Solved! Go to Solution.
Views
Replies
Total Likes
This redirection of request URLs in AEM can be configured at the Sling level, typically in the mapping configuration under /etc/map node. There are two ways of changing the status code:
1) By sling:status property
You can use sling:status property to set a specific status code for a particular redirection. Here is an example:
/etc/map
+-- http
+-- example.com.80
| +-- sling:redirect = "http://www.example.com/"
| +-- sling:status = "301"
Please check the document [0] for more details.
[0]: https://sling.apache.org/documentation/the-sling-engine/mappings-for-resource-resolution.html
2) Via OSGI configuration
Another way, which really sets the default for all redirection, is to configure the status code at the OSGi bundle level. In the OSGi console, browse the the Configuration page and locate: “Apache Sling Resource Resolver Factory” and change the redirect status field to whatever status code is appropriate.
Please try below workaround.
http://www.sgaemsolutions.com/2018/12/implement-301-and-302-redirect-in-aem.html
Views
Replies
Total Likes
This redirection of request URLs in AEM can be configured at the Sling level, typically in the mapping configuration under /etc/map node. There are two ways of changing the status code:
1) By sling:status property
You can use sling:status property to set a specific status code for a particular redirection. Here is an example:
/etc/map
+-- http
+-- example.com.80
| +-- sling:redirect = "http://www.example.com/"
| +-- sling:status = "301"
Please check the document [0] for more details.
[0]: https://sling.apache.org/documentation/the-sling-engine/mappings-for-resource-resolution.html
2) Via OSGI configuration
Another way, which really sets the default for all redirection, is to configure the status code at the OSGi bundle level. In the OSGi console, browse the the Configuration page and locate: “Apache Sling Resource Resolver Factory” and change the redirect status field to whatever status code is appropriate.
Views
Likes
Replies
Views
Likes
Replies