I have tried this post, and many others (1, 2, 3, 4), but they all give me TOO_MANY_REDIRECTS or error 500. So, here is my issue:
With my current .htaccess, this is what happens:
https://www.dukescasino.com/ – works perfectly
https://dukescasino.com/ – redirects to the above which is great
The two options below loads fine, but it should be redirecting to the https version:
Here is the current .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I don’t believe it is relevant, but if so, here is the list of current active plugins:
- Advanced Custom Fields
- All In One SEO Pack
- Bop Search Box Item Type For Nav Menus
- Contact Form 7
- Disable Comments
- Google XML Sitemaps
- Jetpack by WordPress.com
- Search & Filter
- Slider WD
- TablePress
- UpdraftPlus – Backup/Restore
- Wordfence Security
- WPide
- WP Smush
- WP Super Cache
Tests performed:
Test A:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
# First rewrite to HTTPS:
# Don't put www. here. If it is already there it will be included, if not
# the subsequent rule will catch it.
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Now, rewrite any request to the wrong domain to use www.
RewriteCond %{HTTP_HOST} !^www.
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Result: ERR_TOO_MANY_REDIRECTS
Test B:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Result: ERR_TOO_MANY_REDIRECTS
Test C:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Result: ERR_TOO_MANY_REDIRECTS
Test D:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Result: ERR_TOO_MANY_REDIRECTS
Test E:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI}$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}$1
# BEGIN WordPress
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Result: 302 found. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
17
Answers
Problem solved!
Final .htaccess:
On Dreamhost, this worked:
I found all solutions listed on this Q&A did not work for me, unfortunately. What did work was:
Note, the above WordPress rules are for WordPress in multi user network mode. If your WordPress is in single site mode, you would use:
It works for me:
In my case, the htaccess file contained lots of rules installed by plugins like Far Future Expiration and WPSuperCache and also the lines from wordpress itself.
In order to not mess things up, I had to put the solution at the top of htaccess (this is important, if you put it at the end it causes some wrong redirects due to conflicts with the cache plugin)
This way, your lines don’t get messed up by wordpress in case some settings change. Also, the
<IfModule>
section can be repeated without any problems.I have to thank Jason Shah for the neat htaccess rule.
Nothing of the above worked for me. But those lines solved the same problem on my WordPress site:
Here is an alternative solution you can use if you don’t want to edit
.htaccess
:You can place this at the bottom of your theme
functions.php
Just add this code, And it will work like charm:
This is tested and safe to use
Why?: When WordPress editing your re-write rules, so make sure your HTTPS rule should not be removed! so this is no conflict with native WordPress rules.
Note: You have to change WordPress Address & Site Address urls to
https://
in General Settings also (wp-admin/options-general.php
)Add this in the WordPress’ .htaccess file:
Therefore the default WordPress’ .htaccess file should look like this:
The above final .htaccess and Test A,B,C,D,E did not work for me. I just used below 2 lines code and it works in my WordPress website:
I’m not sure where I was making the mistake but this page helped me out.
easyest way to redirect http to https in wordpress it to modify site_url and home from http://example.com to https://example.com. WordPress will do the redirection. ( that is why you get “too many redirects” error, wordpress is redirecting to http while .htaccess will redirect to https )
For your information, it really depends on your hosting provider.
In my case (Infomaniak), nothing above actually worked and I got infinite redirect loop.
The right way to do this is actually explained in their support site:
So, always check with your hosting provider. Hopefully they have an article explaining how to do this. Otherwise, just ask the support.
None if this worked for me. First of all I had to look at my provider to see how they activate SSL in
.htaccess
my provider givesBut what took me days of research is I had to add to
wp-config.php
the following lines as my provided site is behind a proxy :Just add or replace this code in your .htaccess file in wordpress
Redirect from http to https://www
This will work for sure!