Right way of using short URL for multiple domains Hello Team,There are lots of information available for the short URL implementation. Wanted to know the right approach.My scenario:My project handles various domains. each content hierarchy supports various domain site.abc.com/content/client/abc/enxyz.com/content/client/xyz/enpqr.com/content/client/pqr/enShort URL is handled via Apache Sling Resource Resolver Factory, Dispatcher configurationIn the Apache Sling Resource Resolver Factory configuration, we have added these values for publish env. run mode ( only for prod publish)^/content/client/abc/(.+).html</$1.html^/content/client/xyz/(.+).html</$1.html^/content/client/pqr/(.+).html</$1.htmlThen, in the Dispatcher, for each domain, we have separate redirect conf file.So, in each file we have written these line for the re directionRewriteRule ^/$ /en/home.html [R=301,NC,L]This works perfect for all our sites. Even in any component, if we use internal page path then while on hovering the link, this shows short URL. This is good