Http or Https

Discussion in 'Search Engine Optimization' started by Blonde Jon, Dec 28, 2006.

  1. #1
    I've been using Paypal for quite some time now on a particular site. I've thought about making the site secure. If I get a secure certificate for my site, will this effect my search engine rankings? I know if I turned my pages from .html to .php it would, but I'm not for sure on http:// to https://

    Thanks
     
    Blonde Jon, Dec 28, 2006 IP
  2. mad4

    mad4 Peon

    Messages:
    6,986
    Likes Received:
    493
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You don't have to make the entire site secure. You are right in saying a https site is different to a http site though.
     
    mad4, Dec 29, 2006 IP
  3. etechsupport

    etechsupport Peon

    Messages:
    408
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yep not necessary for entire site but encryption is must if you have ecommerce site as such sites have highest intrusion rates so you must keep your session encrypted to send private information of your clients.
     
    etechsupport, Dec 29, 2006 IP
  4. Blonde Jon

    Blonde Jon Active Member Affiliate Manager

    Messages:
    745
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    58
    #4
    Thanks for the info. I will probably secure certain sections of the site. Now all I have to do is figure out how to do that.
     
    Blonde Jon, Dec 29, 2006 IP
  5. Rogem

    Rogem Peon

    Messages:
    171
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    https Is a secure port. I would I recommend only using it (Because it costs money) when important information is being moved about.
     
    Rogem, Dec 29, 2006 IP
  6. TheMadHat

    TheMadHat Peon

    Messages:
    88
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #6
    MSN has a problem with https, but the others can index them just fine.

    That won't make any difference
     
    TheMadHat, Dec 29, 2006 IP
  7. Blonde Jon

    Blonde Jon Active Member Affiliate Manager

    Messages:
    745
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    58
    #7
    Taking my pages from .html to .php will make a difference. I started this particular site in 2004. The site has always had .html pages. If I changed it to .php then the ranking I have for bla_bla_bla.hml will be lossed unless I did a redirect.
     
    Blonde Jon, Dec 29, 2006 IP
  8. sandrodz

    sandrodz Peon

    Messages:
    1,482
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    0
    #8
    checkout process where u handle people's profiles can go SSL, also accounts etc.

    it slows down website allot, not recommended to put it on index
     
    sandrodz, Dec 29, 2006 IP
  9. Glen

    Glen Peon

    Messages:
    1,852
    Likes Received:
    91
    Best Answers:
    0
    Trophy Points:
    0
    #9
    then do it ;)
     
    Glen, Dec 29, 2006 IP
  10. Blonde Jon

    Blonde Jon Active Member Affiliate Manager

    Messages:
    745
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    58
    #10
    I don't think it's that simple. If I made my entire site dynamic, I would probably go all out and do osCommerce or something. I'm not a coder. But from asking around and from what I do know, if I changed my pages dramaticly like I would want to, there is a high probablity that it would upset my rankings. I am ranking very well for nearly all my keywords. Nearly 100% of my traffic comes from organic search engine results. The rest is word of mouths. I don't want to take a gamble and possibly lose my rankings. That's why I'm leery to make any huge moves.
     
    Blonde Jon, Dec 29, 2006 IP
  11. TheMadHat

    TheMadHat Peon

    Messages:
    88
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Then change your pages to php and use mod rewrite to have them keep the html extension. It will be transparent and the SE's won't even notice.

    .htaccess
    AddHandler application/x-httpd-php .php .html .htm
     
    TheMadHat, Dec 30, 2006 IP
  12. Blonde Jon

    Blonde Jon Active Member Affiliate Manager

    Messages:
    745
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    58
    #12
    Mod rewrites are like Chinese to me. Do you have a link to an easy to understand tutorial? Maybe it is something I should look into.

    Thanks
     
    Blonde Jon, Dec 30, 2006 IP
  13. TheMadHat

    TheMadHat Peon

    Messages:
    88
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #13
    mod rewrite can get a little complicated. You might check out this for a beginner's guide. You might also start another thread asking for the syntax, there are plenty of members here that are more skilled in regular expressions than I am.

    Options +Indexes
    Options +FollowSymlinks
    RewriteEngine on
    RewriteBase /
    RewriteRule ^(.*)\.html$ $1.php [L]

    Add that to your .htaccess file....I think this is the way to do it.
     
    TheMadHat, Jan 1, 2007 IP
    Blonde Jon likes this.