Hi Team,
I've an issue with url redirection. Currently i have an app devleoped in Python and used IIS to deploy it. Portal works fine with http binding. Network team has configured the domain in such a way that if user entershttp://xxx.yyy.net, it will redirect the request host to https.
A week ago, we got SSL certificate for our domain to make it secure. I recieved pfx certificate from them. Using Server Certificates option, i imported the certificate and binded my website with it.
Now the issue, website is running only when i have both http and https bindings in it. If i remove http bindings, website stops.
So i kept both http and https in my binding and to find is the request host url is http or https, i written a log in my python code to track it.
I found it was only http://xxx.yyy.net and not https://xxx.yyy.net.
So is there any workaround to make it https and block http. I dont want the website to work on http.