vote up 0 vote down star

I have a site with an SSL cert for www.foo.com. What is the cleanest way redirect requests to the https:// prefix? Do I have to build links server side instead of relying on resolving urls with relative paths, ~/?

Also, say I redirect to an https:// page, the links on the page are all created in a master page and are resolved with relative paths. If the user clicks on any of the navigation elements they are essentially stuck on the https:// path, what is the best way to clean that up?

The paths all need to work in the dev (localhost), staging, and production environments.

flag

75% accept rate

2 Answers

vote up 1 vote down

No you dont need to do anything,

Unless you issue a fully qualified url, your every relative url redirects and paths are always considered along with https:// for example,

Your url of page is https://mysite/folder1/page.aspx and if you issue Response.Redirect("/folder2/page2.aspx") then web server only issues relative url "/folder2/page2.aspx" but the client (IE/FF2/Safari) they append "https://mysite" before the url.

So as long as you use relative urls in your project, you are safe.

link|flag
vote up 0 vote down

You can set the <base> tag in your html, which would mean everything would then be relative to that base url.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.