Hi @navyavo,
A few things to check that are commonly overlooked:
-
Was the Redirect Map Manager also enabled on the publish instance?
Redirects are typically evaluated on the publisher (especially when sitting behind a Dispatcher or CDN). If it’s only enabled on author, the redirects won’t fire in real-world usage.
-
It’s recommended not to manually enable the configuration via the Web Console.
Instead, follow best practices and deploy the OSGi configuration via code - that way it’s version-controlled and consistent across environments.
Add the configuration in your project codebase under:
ui.config/src/main/content/jcr_root/apps/your-project/config/...
Example config file for enabling Redirect Manager:
/apps/my-app/config.publish/com.adobe.acs.commons.redirects.filter.RedirectFilter.config
Sample configuration like:
enabled=true
mapUrls=true
extensions=["html"]
paths=["/content"]
preserveQueryString=true
Adjust the paths and extensions as per your requirement.