Redirect HTTP to HTTPS - If your wordpress is on HTTPS

jdunhin

Active member
Registered
Joined
Feb 27, 2013
Messages
72
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
Registered
Joined
Feb 1, 2013
Messages
215
Points
0
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}
 
Older Threads
Newer Threads
Replies
15
Views
8,478
Replies
0
Views
3,319
Replies
25
Views
14,705
Replies
2
Views
5,844
Replies
5
Views
21,947
Latest Threads
Replies
0
Views
580
Replies
2
Views
554
Replies
1
Views
491
Replies
2
Views
1,081
Replies
1
Views
702

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top