Removing .html extension from the URL | Community
Skip to main content
New Participant
August 28, 2024
Solved

Removing .html extension from the URL

  • August 28, 2024
  • 4 replies
  • 1576 views

Hi all,

I am working on removing the .html extension from the url, Can anyone guide on this in detail, how I can acheive this.

Thanks in advance. 

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 EstebanBustamante

Hi, 

The approach can vary depending of your requirements, please check this thread were there is a good discussion about the topic with couple approaches: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/extensionless-every-url-to-be-served-on-dispatcher/td-p/436026 

 

Hope this help

4 replies

AMANATH_ULLAH
New Participant
August 28, 2024
EstebanBustamante
EstebanBustamanteAccepted solution
New Participant
August 28, 2024

Hi, 

The approach can vary depending of your requirements, please check this thread were there is a good discussion about the topic with couple approaches: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/extensionless-every-url-to-be-served-on-dispatcher/td-p/436026 

 

Hope this help

Esteban Bustamante
arunpatidar
New Participant
August 28, 2024
SudipSinhaAEM
New Participant
August 28, 2024

If you are using a java file then please do below part:

if (url.contains(".html")) {

url=url.replace(".html" , "");

}

 

This will solve your problem.