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
|
2
|
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
|
||
|
|
|
|
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.
|
||||||||
|
|
|
You tagged ASP.NET so I assume you use IIS. Create a file in your Web Root of your web site, call it SSL_Redirect.htm or something like that. Put this Javascript in there:
Now, go to the properties of your Web Site. Go to the Customer Errors Tab, look for the 403.4 error, edit it. Change it to use a URL of /SSL_Redirect.htm (or whatever you named it). Now, in the IIS Admin, find that file, SSL_Redirect.htm, right click, go to properties. Go to File Security and uncheck Require SSL for that particular file. You're done. |
||
|
|
|
|
I think it is as simple as witing
|
||
|
|
|
|
I remember dealing with the same issues a while back. I wanted to make sure certain pages were over https, while the rest were using http. I also wanted to be sure that once the visitor left the secure page for pages that didn't need to be secure they would flip back to http. To accomplish this I explored two options: The first option was that I could use the free .NET URLRewriter project to rewrite specific pages outlined in the configuration file:
Using this configuration I can ensure only the two pages are secure, while the rest will be insecure. I had fine results with this option. The second option came after I located a complete solution dedicated to handling this very problem. The company is SanibelLogic and they have a product called SSLRedirect. This HTTPModule based solution does exactly what I needed. It does cost a little money but if you want something simple to implement and manage this might fit the bill. They even offer the source code if you want to edit anything about it... I used both options for many months but ended up using the SSLRedirect product for its simplicity. I hope this helps... |
||
|
|
|
|
Send a Redirect Header (302) to the browser. Example:
Article on the difference between Server.Transfer and Response.Redirect |
||||||
|