Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you forward http request to a https url

Like the question says, if I have a request for a page on my site like this

http://somename.something.here/Dada.aspx

to something like this

https://somename.something.here/Dada.aspx

like image 845
CheGueVerra Avatar asked Jul 20 '26 05:07

CheGueVerra


1 Answers

I prefer to (a) not redirect local connections (to ease development under VS), and (b) use a UriBuilder instead of a string.Replace as it's a bit more exact.

if (!Request.IsLocal && !Request.IsSecureConnection) {
    var ub = new UriBuilder(Request.Url);
    ub.Scheme = Uri.UriSchemeHttps;
    ub.Port = -1; // use default port for scheme
    Response.Redirect(ub.Uri.AbsoluteUri, true);
    return;
}
like image 186
Mark Brackett Avatar answered Jul 21 '26 20:07

Mark Brackett



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!