Hi @tatrived
To access pages without adding the `.html` extension to the URLs in AEM, you can configure the Apache Sling Resource Resolution to remove the extension. Here's how you can do it:
1. Open the AEM Web Console by navigating to `http://localhost:4502/system/console/configMgr` (replace `localhost:4502` with your AEM instance URL if necessary).
2. Search for the "Apache Sling Resource Resolver Factory" configuration and click on it to open the configuration page.
3. In the configuration page, locate the "Resource Resolver Mapping" section.
4. Add a new entry to the "URL Mappings" field. The entry should have the following format: `/content=/content.html`. This mapping tells AEM to resolve URLs without the `.html` extension.
5. Save the configuration.
After making this configuration change, you should be able to access pages without adding the `.html` extension to the URLs. For example, if you have a page with the path `/content/mysite/mypage`, you can access it using the URL `http://localhost:4502/content/mysite/mypage` instead of `http://localhost:4502/content/mysite/mypage.html`.
Please note that modifying the resource resolution configuration can have implications on the overall URL structure and may require adjustments to your website's links and references. It's recommended to thoroughly test the changes and ensure they align with your specific requirements and use cases.

Configure Dispatcher:
If you are using AEM Dispatcher as a caching and load balancing component, you need to configure it to handle URLs without the ".html" extension.
Open the Dispatcher configuration file:
- Locate the dispatcher.any file (typically found in /etc/httpd/conf.d/ or /etc/apache2/conf.d/).
- Edit the file with a text editor.
Add a URL rewrite rule:
- Add a rule to rewrite URLs without ".html" to include ".html". For
/url "/content/(.*[^/])$" "/content/$1.html"
This rule ensures that if the URL doesn't end with a "/", it is rewritten to include ".html".
Save the configuration.
3. Update Links in AEM Components:
After making these changes, ensure that links in your AEM components do not include the ".html" extension. AEM will automatically resolve URLs based on the configuration changes.
4. Clear Dispatcher Cache:
If you are using the AEM Dispatcher, clear the cache to ensure that the new configuration takes effect.