-
August 20th, 2018, 07:30 AM
#1
Junior Member
how to redirect my website on https from http
I don't know how direct .... but i want to how it possible to direct a website on https from http
-
August 20th, 2018, 01:49 PM
#2
-
September 13th, 2018, 08:23 AM
#3
Junior Member
Redirecting HTTP to HTTPS. Redirect All Web Traffic. If you have existing code in your .htaccess, add the following: Redirect Only a Specific Domain.
-
October 29th, 2018, 04:27 AM
#4
Member
Depends on what web hosting server you are on. Usually your hosting control panel will have a option that you may choose from,
What happens when you do that is they modify your ht access file on your server. You can also do this yourself by inserting the following code...
Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Just make sure you have a ssl or auto ssl for your website as forcing a redirect with no valid certificate will give a self signed warning.
Also make sure all resources being called in your website are being called over https... somethings things like background urls wont change if they are absolute.
If you are using wordpress there are lots of plugins that will do this for you. Force https being one.
-
November 19th, 2018, 08:28 AM
#5
Junior Member
 Originally Posted by petershene
Depends on what web hosting server you are on. Usually your hosting control panel will have a option that you may choose from,
What happens when you do that is they modify your ht access file on your server. You can also do this yourself by inserting the following code...
Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Just make sure you have a ssl or auto ssl for your website revglue(.)com/bespoke as forcing a redirect with no valid certificate will give a self signed warning.
Also make sure all resources being called in your website are being called over https... somethings things like background urls wont change if they are absolute.
If you are using wordpress there are lots of plugins that will do this for you. Force https being one.
Agreed and we could have given more accurate advice if we know the name and the nature of that website.
-
November 26th, 2018, 11:11 AM
#6
Junior Member
This is my problem. I had to use https instead of http. but this post was really useful and helped me. Thank you.
-
January 7th, 2019, 07:49 AM
#7
Junior Member
 Originally Posted by stateexpress
I don't know how direct .... but i want to how it possible to direct a website on https from http
The process of quite simple, you can use the plugin and you can also remove your SSL and it can be done by using the code
# Redirect HTTPS to HTTP
RewriteCond %{HTTP:X-Forwarded-Proto} =https
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Similar Threads
-
By cacosapo in forum Newbie Security Questions
Replies: 9
Last Post: July 14th, 2004, 04:54 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|