For apps that take payments and other sensitive data, best practice is undoubtedly to enable https routes.
But I notice the http version of the urls still work (perfectly well), which, if accidentally used could expose users to unnecessary risk.
Is it possible to outright disable the http versions?
So far I know that an attempt to access http://www.google.com/
results in the browser resolving to https://www.google.com/
. I'm not sure how this works and all the steps involved (is it a simple redirect or something much more), and I'm not sure if users could somehow access (and stay on) the http version, thereby exposing themselves to unnecessary risk.
Note: I do not deal with web everyday, so I apologise if this is a stupid question to those who do