SSL ইনস্টল হওয়ার পরও আপনার সাইট সিকিউর দেখায় না, এই সমস্যার সমাধান পেতে যা করবেন

 

Method 1:  সিপ্যানেল থেকে ফোর্স করুন প্রথমে সিপ্যানেল লগইন করবেন এরপর ডোমেইন সেকশন থেকে Domains ক্লিক করুন

 

এরপর যে ডোমেইনটি ফোর্স করতে চান সেই ডোমেইনের ডান পাশে থাকা টিক চিহ্ন অপশনটি সিলেক্ট করুন, SSL ইনস্টল না থাকলে টিক চিহ্ন কাজ করবে না অবশ্যই SSL ইনস্টল করে নিতে হবে পূর্বে।

 

 

Method 2: Using https instead of http in WordPress Settings

 

You can follow the screenshot to forward http to https for WordPress websites.

 

Login WordPress Dashboad>Settings>General

 

 

 

Method 3: Using a Plugin for WordPress Site

 

It is an easy way to forward http to https by installing a plugin for a WordPress site. Just follow the instructions bellow.

 

Login WordPress Dashboard> Plugin>Add New>Search Keyword “Simple SSL”. You will find a Plugin “Really Simple SSL”. Install the plugin and activate it. It will forward http to https. We added a screenshot bellow.

 

 

Method 4: Using a .htaccess file when you have access to the root folder

 

You can use a snippet of code and edit the .htaccess file with a rule for redirecting from http to https

 

———————————-

 

RewriteEngine On

 

RewriteCond %{HTTPS} off

 

RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

 

———————————-

 

Generally, all websites use an HTTP protocol as their default protocol for handling web requests. but with https, you will get secure data transmission between client’s computer and a web server. This will increase the client’s confidentiality for your website.

 

 

Method 5: Using a PHP function for custom php site

 

You can use a .php function for forwarding to https from http your. Just you have to put small php code in right place where you want the redirection.

 

< ?php

 

function redirectTohttps() {

 

if($_SERVER[‘HTTPS’]!=â€onâ€) {

 

$redirect= “https://â€.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];

 

header(“Location:$redirectâ€); } }

 

?>

Method 6: Using an HTML Meta Tag for Static Page

 

The above methods are enough for forwarding from http to https. You can also use an HTML Tag if you fail to use the “mod rewrite” rules.

 

Add the following HTML Code in page header as bellow

 

< meta http-equiv=”Refresh” content=”0;

URL=https://www.yourdomainname.com” />

 

 

Bu cavab sizə kömək etdi? 0 istifadəçi bunu faydalı hesab edir (0 səs)

Ən məşhur məqalələr

How to Allow remote MySQL access in cPanel

For this you need to get a static IP as the ISP's IP may change so you need to set it again....

আপনার সাইট দেখা যাচ্ছে না ! করণীয় ? Your site is not visible! To do

আপনার ল্যাপটপ বা কম্পিউটার বা মোবাইলে সাইট না আসার কিছু কারণ থাকতে পারে।…..   ১. নেমসার্ভার যদি...

নেমসার্ভার এবং সিপ্যানেল ইউজারনেম কিভাবে বের করবেন ? How to find nameservers and cPanel usernames

এখানে ক্লিক করে লগইন করুন এরপর এখন যে সার্ভিসের নেমসার্ভার এবং ইউজারনেম বের করতে চান সেই...

Domain & Hosting কি

ডোমেইন (Domain) অনেকেরই মনে প্রশ্ন আছে “ডোমেইন কি ?” এবং কে প্রথম ডোমেইন নাম রেজিস্ট্রেশন...

WebMail স্পামে যাওয়ার কারণ এবং করণীয়? Why WebMail Goes to Spam and What to Do?

আমরা যারা শেয়ার্ড হোস্টে ইমেইল ব্যবহার করে থাকি অনেকেই তাদের ইমেইল ইস্পামে চলে যাই, এই স্পামে...