Redirect HTTP to HTTPS - If your wordpress is on HTTPS

jdunhin

New member
Joined
Feb 27, 2013
Messages
93
Points
0
If you have a Wordpress installation on https then you want the http to redirect to https.

In your public_html (not in public_ssl) put this html file:

Create "name.html"
Insert this code and replace domain with website name.
HTML:
<meta http-equiv="Refresh" content="0;URL=https://domain.com" />
There are other methods but this is very easy to do.
 

Inquestor

Well-known member
Joined
Feb 1, 2013
Messages
495
Points
63
Awesome tidbit of code jdunhin! This could be helpful for a few people here.

I prefer to use .htaccess to perform my re-directs and at times when necessary for SEO 301 Header redirects. For some reason I just don't believe in meta redirects.

Here is the .htaccess code I use

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
 
Newer threads
Replies
6
Views
5,054
Replies
5
Views
4,699
Replies
9
Views
4,828
Replies
10
Views
6,138
Recommended threads
Replies
12
Views
11,022
Replies
3
Views
3,850
Replies
21
Views
15,909
Top