Answer by MrWhite for Using htaccess to force HTTPS doesn't work
tl;dr You're HTTP to HTTPS redirect is in the wrong place. It needs to go near the start of the /clickandbuild/bebechan/.htaccess file, not at the end. (See below for further explanation.)There seems...
View ArticleAnswer by Talal Al-Khalifa for Using htaccess to force HTTPS doesn't work
You must activate the option AllowOverride All to use .htaccess file. Also, you can add the Rewrite rules inside the Directory in the conf file like the below example or on your .htaccess...
View ArticleAnswer by Emirodgar for Using htaccess to force HTTPS doesn't work
The following code will redirect all to https://www..... Make sure you are not using any other Wordpress plugin or configuration that could generate a conflict with it.RewriteEngine OnRewriteCond...
View ArticleUsing htaccess to force HTTPS doesn't work
NEW EDIT 28/oct/19 →I edited the .htaccess file as you saidAddHandler x-mapp-php5.5 .php# HTTP to HTTPS redirectRewriteCond %{SERVER_PORT} 80RewriteRule (.*) https://www.bebechan.net/$1 [R=301,L]#...
View Article