How to Install SSL Certificate In Website

Introduction of SSL Certificate -: The full name of SSL is Secure Sockets Layer. SSL is a standard security technology for establishing an encrypted link between a server and a client. SSL is known than Transport Layer Security. To install SSL certificate in website first we purchase this from the server. There are many server that providing this facility.

how to install ssl certificate

How to install SSL certificate in website

Some server provide free and some server take the some money for giving the SSL service.Before you install SSL In your website You need to purchase your server. For purchasing go to the server and purchase it. After purchasing this service has been added your account. there are different way to installing this service using your hosting plan.

Here we will tell you some hosting plan and installing service.

How to install SSL Certificate Godaddy server

Installing SSL on godaddy server there are different because godaddy provide 2 type hosting Linux hosting, window hosting, here we install SSL in windows hosting . follow these process.

1-: First login in godaddy account and purchase the SSL on godaddy server.

2-: After Purchasing it will added in your godaddy account.

3-: Now go to My Product section here you will saw all product that you purchase from godaddy Server

4-: Now Select SSL Service and click the Manage button from godaddy server.

5-: When we click another page will open here then we click the setup button there we found a dropdownlist. In the dropdown list we saw all the domain name which are we already buy this account.

6. Now select the domain and click the setup page here. after selecting the domain a ctr file generated here.Here a description text box will open if you want to give description you can write here. Now click the next button.

7-: Now upload the certificate if you purchase outside from godaddy if you purchase from godaddy its takes automatic.

8. Now Its asked the confirmation of your click the confirmation button. Now your website is ready for secure.

How to Redirect website insecure to secure protocol

There are different method for redirect http to https. If you are using window hosting then write the code into web.config file. It was use in asp.net c# programming and other programming language. You can write this code into web.config file

 <system.webServer>
<rewrite>
        <rules>
          <rule name="Redirect to HTTPS" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
              <add input="{HTTPS}" pattern="^OFF$" />
            </conditions>
            <action type="Redirect" url="https://websiteurl.com/{R:1}" redirectType="Permanent" />

          </rule>
        </rules>
      </rewrite>
 </system.webServer>

You can use this code in web.config file and save it. After saving it will redirect website insecure to secure server.

Leave a Comment