SSL redirection

From www.mydomain.com or mydomain.com TO https://www.mydomain.com To accomplished the above redirection, there are few options, you can do it in IIS, web.config, live server sitting, redirection in the code level Web.config In web.config you can put the below code inside tag and that should work: <rewrite> <rules> <rule name=”Redirect domain.com to www” patternSyntax=”Wildcard” stopProcessing=”true”> <match … Continued