Forum Moderators: mack
Looking through an http header response viewer, I saw that the home page that starts with a "http" employs a 302 redirect to the same home page under "https."
Does anyone know if either the 302 redirect or https pages is causing a problem for the MSN spider?
Thanks
My guess is that you could choose and https:// page, take the S out of the URL and it will still parse? If so, then you problem seems easy enough to fix - just stop using https until you really need it.
A 302 says temporary move to a search engine, so whatever shows on the page will not be parsed or included in the index because that page has been temporarily moved to an https location. SEE 2 below.
To change this depends on where the redirect is set. If it is in the root - httpd.conf file - you will need to ask the host to change it or remove it and create your own. If it is in the .htaccess file, you will need to add R=301 to the RewriteRule or 301 to the Redirect that does the redirecting.
2. https is not crawled, indexed or parsed for content. If your client wants pages in the search engines he will pay to have them moved to http pages. If not - there is not much you can do, unless you can convince G, M and Y to change their policy.
Justin
I think I found the source of the redirects: it is from the default.aspx.cs file. Now I need to figure out how to code it, but I think I know how.
I thought search engines had a problem with https pages, too, but Yahoo and Google are indexing it pretty good with no problems. MSN and Ask seem to be the ones with an issue.
Unfortunately, the site was built before I came onboard, and, without going into detail, there are certain reasons we have to keep it all secure at this point.
I believe we can fix the possible MSN issue by 301 redirecting the http home page they have indexed to https and then, hopefully, it will crawl more.
Thanks again.