Reverse Mapping in /etc/map | Community
Skip to main content
Level 2
September 20, 2018
Solved

Reverse Mapping in /etc/map

  • September 20, 2018
  • 1 reply
  • 3855 views

Hi there,

We have a request where we are using etc/map for rewrite URLs of our site but now we need to have a reverse mapping in order to get the valid path to show in all links in the site.

Our Sling mapping (not reverse) is the next one:

sling:internalRedirect

String

/content/site/es/es/$1.html

sling:match

String

localhost.4502/es/(.*)$

Now, we are trying to get the inverse, when resolving the url by /content/site/es/es/page we need to have the domain/es/page with

getResourceResolver().map(resourcePath)

e.g. localhost:4502/es/folder/page serves the content of /content/site/es/es/folder/page. This behavior is ok.

The issue is that every href in the page (fetched by resource resolver) are invalid links serving:  /content/site/es/es/folderx/pagex and not: localhost:4502/es/folderx/pagex

Do you have any idea how to create these reverse rules or if we are thinking on the correct way to have valid links in the site?

Regards.

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 arunpatidar

Hi,

you can try to create new node in /etc/map with below value for reverse mapping.

sling:internalRedirect

String

/content/site/es/es/(.*).html

sling:match

String

localhost.4502/es/$1

I am not sure what is your use case here, if you are just creating shortened url then you can create reverse mapping like above and to map short urls to actual content you can create mapping.

1 reply

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
September 20, 2018

Hi,

you can try to create new node in /etc/map with below value for reverse mapping.

sling:internalRedirect

String

/content/site/es/es/(.*).html

sling:match

String

localhost.4502/es/$1

I am not sure what is your use case here, if you are just creating shortened url then you can create reverse mapping like above and to map short urls to actual content you can create mapping.

Arun Patidar