Https Redirect issue
We have added a redirect in dispatcher /abc.html to /xyz.html.
When https://www.example.com/abc.html is accessed
Actual behaviour:
https://www.example.com/abc.html --> http://www.example.com/xyz.html --> https://www.example.com/xyz.com
Expected Behaviour:
https://www.example.com/abc.html --> https://www.example.com/xyz.html
Configuration in Dispatcher:
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} !=on
RewriteRule (.*) https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
How to remove the https to http redirect? Is there any other configuration needs to be added in dispatcher?