1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Changing website from http to https

Discussion in 'Site & Server Administration' started by Jim4767, Dec 23, 2014.

  1. #1
    With Google announcing a "slight" rankings increase for https webpages, I am considering changing my website's 300+ pages from http to https.

    Has anyone here been through that process? Is it pretty technical and elaborate? Or is it something a fairly low-tech guy like me can do? Any advice or personal experience with this will be appreciated. Thanks.
     
    Jim4767, Dec 23, 2014 IP
  2. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #2
    I got the hosting company to do apply the certificate which they stuffed up and I ended up doing myself so I guess it's hard and easy - but there are lots of sites to help check it's right after you're done and and the support I got from the certificate company exceeded expectations (I got into a dispute with the hosting company where they wouldn't accept there was a problem, cert company agreed with me and provided the fix).

    Within your site it's pretty easy - you just need to find any absolute links and make a quick edit. How you do that depends on whether they're in code or the database and what (if any) CMS you use.
     
    sarahk, Dec 23, 2014 IP
    Jim4767 likes this.
  3. RoseHosting

    RoseHosting Well-Known Member

    Messages:
    230
    Likes Received:
    11
    Best Answers:
    11
    Trophy Points:
    138
    #3
    The process is pretty straight forward:

    1. Order an SSL Certificate for your domain.

    2. Install the SSL certificate.

    3. If you are using the Apache web server, redirect from http URLs to https by using this in your Apache configuration file or .htaccess file:

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    Code (markup):
    Also, you may need to edit your website files/scripts and change all paths to images, CSS, Javscript files etc. with relative paths.
     
    RoseHosting, Dec 24, 2014 IP
    Jim4767 likes this.
  4. Jim4767

    Jim4767 Prominent Member

    Messages:
    4,738
    Likes Received:
    766
    Best Answers:
    10
    Trophy Points:
    305
    #4
    Thanks! Much appreciated.
     
    Jim4767, Dec 24, 2014 IP