Dispatcher RewriteCond is not working on Production(AEMCaaS)
I have a RewriteCond on prod as below
RewriteCond %{HTTP_HOST} ^www\.myprodsite\.com$ [NC]
RewriteCond %{REQUEST_URI} !^/apps
RewriteCond %{REQUEST_URI} !^/bin
RewriteCond %{REQUEST_URI} !^/content
RewriteCond %{REQUEST_URI} !^/etc
RewriteCond %{REQUEST_URI} !^/home
RewriteCond %{REQUEST_URI} !^/libs
RewriteCond %{REQUEST_URI} !^/saml_login
RewriteCond %{REQUEST_URI} !^/system
RewriteCond %{REQUEST_URI} !^/tmp
RewriteCond %{REQUEST_URI} !^/var
RewriteRule ^/(.*)$ /content/mysite/$1.html [PT,L]
This Rule is not executed when I hit links like www.myprodsite.com/test
If I keep everything same except the url in dev environment then it works fine as below
RewriteCond %{HTTP_HOST} ^mysite-dev\.adobecqms\.net$ [NC]
Hence link like www.mysite-dev.adobecqms.net/test gets redirected to www.mysite-dev.adobecqms.net/content/mysite/test.html
Also other rules in the same prod file works fine.
How can we check the logs for the dispatcher in Adobe AMS?
Do we have to do any changes on prod to allow any domain specific conditions?