Error: http://www.example.com/xxx is not redirecting correctly to HTTPS. Query string/relative url is lost during redirection.
Error: http://www.example.com/xxx is not redirecting correctly to HTTPS. Query string/relative url is lost during redirection.
Solution:
In Pound, Please configure the redirection as follows and then restart related pound service.
We need to use RedirectAppend instead of only Redirect.
Service "HTTP_LIVE"
URL ".*"
HeadRequire "Host: (www\.example\.com)"
RedirectAppend "https://www.example.com/"
End
Solution:
In Pound, Please configure the redirection as follows and then restart related pound service.
We need to use RedirectAppend instead of only Redirect.
Service "HTTP_LIVE"
URL ".*"
HeadRequire "Host: (www\.example\.com)"
RedirectAppend "https://www.example.com/"
End
No comments