top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How a website can be secured ?

+1 vote
264 views

How a http web client is made as https ?

posted Aug 22, 2016 by Rupam

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Its is five step process -

  • Host with a dedicated IP address
  • Buy a certificate
  • Activate the certificate
  • Install the certificate
  • Update your site to use HTTPS i.e. migrate HTTP urls to HTTPS

While first four is pretty straight, for the fifth one use the following code in the .htaccess if you are using apache

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
answer Aug 22, 2016 by Salil Agrawal
Similar Questions
+3 votes

Want to build the push notification for the normal browser but it seems it require to be a https website. Is it mandatory for the website to be a https website for having browser based push notification service i.e. GCM/FCM?
Any pointer would be helpful?

+2 votes

I want to build a A URL Shortener service in my PHP based Website without use of any thirdparty tool. Any clue or opensource would be a great help?

...