April 27, 2020
Estimated Post Reading Time ~ 1 mins

Different approaches to define vanity URL in AEM

This post explains the different approaches to define vanity URL’s in AEM.

Page-Level Vanity URL’s:
Open the page properties from siteadmin
1Picture1

Enter the Vanity URL and select Redirect Vanity URL to redirect to the page.
2Picture1

In this approach,
  • An author can edit the Vanity URL
  • Vanity URL should be unique across the instance
Sling Resource Resolver – URL Mapping:
Open the config manager - http://localhost:4502/system/console/configMgr Select Apache Sling Resource Resolver Factory.
Click the + sign in the URL Mappings.

3Picture1
Enter the resolved URL and the vanity URL in the Text box. /content/geometrixx-outdoors/en/men/coats/edmonton-winter.html:/edmonton-winter

Click Save.

4Picture1

In this approach,
  • The author can’t edit the Vanity URL
  • Vanity URL should be unique across the instance
Sling Resource Mappings:
Open http://localhost:4502/crx/de/index.jsp
Under /etc/map/http create a node of the type sling:Mapping

Create a property called, sling:internalRedirect, of type String with the value of redirect URL - /content/geometrixx-outdoors/en/men/coats/edmonton-winter.html
Create a property called, sling: match, of type String with the value of vanity URL- [^/]++/edmonton-winter.html

5Picture1

If we want to configure the same vanity URL for two different sites then specify the hostname along with port number as shown below in the vanity URL configuration.

6Picture1

Save all the configurations

Verifying the Vanity URL:
The vanity URL created in the above approaches can be verified by the following steps. Open http://localhost:4502/system/console/jcrresolver
Enter the Vanity URL in the text box and click Resolve

If the vanity URL is configured with Sling Resource Mappings then enter the full URL to resolve - http://localhost:4502/edmonton-winter.html

7Picture1

Dispatcher Rewrite Rules:
Setup virtual hosts for different URLs and specify the Rewrite Rules for redirect to the target URL in httpd.conf file.

<VirtualHost *>
ServerName www.example.com
DocumentRoot /dispatcher/cache/example
RewriteEngine on
RewriteRule ^/edmonton-winter.html$ /content/geometrixx-

outdoors/en/men/coats/edmonton-winter.html [NE,L,R=301] <Directory /dispatcher/cache/example>

<IfModule disp_apache2.c> SetHandler dispatcher-handler ModMimeUsePathInfo On

</IfModule>
Options FollowSymLinks AllowOverride None

</Directory> </VirtualHost>

<VirtualHost *>
ServerName www.example1.com
DocumentRoot /dispatcher/cache/example1
RewriteEngine on
RewriteRule ^/edmonton-winter.html$ /content/geometrixx-outdoors/en/men/coats.html

[NE,L,R=301]
<Directory /dispatcher/cache/example1>

<IfModule disp_apache2.c> SetHandler dispatcher-handler ModMimeUsePathInfo On

</IfModule>
Options FollowSymLinks AllowOverride None

</Directory> </VirtualHost>

aem4beginner.blogspot


By aem4beginner

No comments:

Post a Comment

If you have any doubts or questions, please let us know.

Ad Blocker Detected :(

Please consider supporting us by disabling your ad blocker.

Please Disable your adblocker and Refresh the page to view the site content.