I want to force HTTP clients to switch to HTTPS in my application. Users typing www.mysite.com will by default use HTTP, but they need to be redirected to HTTPS. Users using old bookmarks will be redirected to HTTPS version of the bookmarked page.
HSTS (RFC 6797) helps a lot once redirected. My question is actually about HTTP methods.
GET and HEAD are surely supposed to accept a 301/302 redirect, but what about POST/PUT and DELETE?
See the following example:
void context_BeginRequest(object sender, EventArgs e)
{
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;
if (context.Request.IsSecureConnection) return;
if (context.Request.HttpMethod == "GET" || context.Request.HttpMethod == "HEAD")
{
string redirectUri = context.Request.Url.ToString().Replace("http://", "https://");
context.Response.RedirectPermanent(redirectUri, true);
}
else
{
throw new HttpException(403, "SSL Required");
}
}
Both GET and HEAD are handled with a redirect. Currently POST, as far as I know, accepts the 301 redirect as a GET request to be done, i.e. doesn't repost to the HTTPS version. So this is why in my code snippet I end up with a 403 code.
The question is to be read from the HTTP protocol's point of view
Apart from checking that all forms in the application point to HTTPS, how should clever HTTP developers force a client to redirect a POST request to the HTTPS version of a page when the browser directs its request to the plain old HTTP version?
Possible solution
Create a landing page filled with all form fields, that automatically (via Javascript and a "click me if you don't get redirected" button) reposts the form to HTTPS version of the target page.
Any other ideas?