在AEM / CQ5中,使用/ etc / map的URL重定向不起作用

时间:2016-09-21 07:54:44

标签: cq5 aem

我有一个用例将/ content / project / en / test / events重定向到/ content / project / en / test页面,因为页面属性的内部重定向不起作用。

我在/ etc / map / http文件夹下使用了以下值:

吊索:匹配为(。+)/ en / test /(.+)$

sling:internalRedirect as(。+)/ en / test.html

我仍然需要重定向无效。

请让我知道相同的配置。

感谢和安培;问候

1 个答案:

答案 0 :(得分:2)

sling:internalRedirect是用户的目标,因此您应该使用sling:match

中的匹配

使用:sling:internalRedirect作为$1/en/test.html

顺便说一句。这里有一篇关于映射的有用文章:https://www.cognifide.com/our-blogs/cq/multidomain-cq-mappings-and-apache-configuration/

编辑: 像这样的简单配置将起作用(从home.html重定向到page1.html):

enter image description here