I am about to move an entire site so that it is served securely, but want to make sure I'm not affecting any current links to the site.
Previously I have used a Response.Redirect (the site is in ASP.NET) if a page is attempt to be loaded over http rather than https, but as there are many current links to the site, I wonder if I should in fact be returning a 301 to the secure page via Response.Status instead?
Or does Google simply ignore http vs https when looking at links?
Previously I have used a Response.Redirect (the site is in ASP.NET) if a page is attempt to be loaded over http rather than https, but as there are many current links to the site, I wonder if I should in fact be returning a 301 to the secure page via Response.Status instead?
Or does Google simply ignore http vs https when looking at links?