Post
Topic
Board Project Development
Merits 2 from 2 users
Re: Issue in SSL (HTTP to HTTPS) Please help
by
UluBey
on 15/10/2018, 14:11:12 UTC
⭐ Merited by TryNinja (1) ,Initscri (1)
Please give more details like are you using wordpress or is it just html or etc.

You can force https by editing .htaccess file

Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Change image, css, js etc. files from http to https from code source.

If you are using wordpress you can go to wp-admin -> Settings -> General and change the site url and wp address from http to https and so on.