Hi, in my web application I am using secure cookies to remember users.
It works like this:
- If the connection is insecure redirect to a HTTPS url.
- Over the secure connection transmit the cookies and identify the user.
- Redirect to the original (insecure) url.
So every client has to go through two redirects per session. Also the SSL certificate is self-signed.
My questions are:
- Would this scheme cause problems with search engines like Google?
- If so, how to solve this? Is it possible to recognize the search engine and skip the redirects?
Thanks in advance!