Quantcast
Channel: Using htaccess to force HTTPS doesn't work - Webmasters Stack Exchange
Viewing all articles
Browse latest Browse all 4

Using htaccess to force HTTPS doesn't work

$
0
0

NEW EDIT 28/oct/19 →I edited the .htaccess file as you said

AddHandler x-mapp-php5.5  .php# HTTP to HTTPS redirectRewriteCond %{SERVER_PORT} 80RewriteRule (.*) https://www.bebechan.net/$1 [R=301,L]# BEGIN WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule># END WordPress

I also added the lines in wp.config :

/** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each * a unique prefix. Only numbers, letters, and underscores please! */$table_prefix = 'mIQnU';define('ALLOW_UNFILTERED_UPLOADS', true);define('FORCE_SSL', true);define('FORCE_SSL_ADMIN',true);/* That's all, stop editing! Happy publishing. */

I checked the wp settings and my addresses are well written (https://bebechan.net). I even downloaded a plugin to redirect every http:/bebechan.net/ebook to https://bebechan.net/ebook.

STILL NOT WORKING sadly : (. Every time I go to bebechan.net/ebook, it's not https but http.

Something I wanna point out is that, even when I go directly to the https://bebechan.net/ebook, I can access the 'buy' page, BUT, the little green lock doesn't appear, I checked the 'why no padlock' website (https://www.whynopadlock.com/results/cf25cdd8-0cde-4cfb-bfc6-1dc0ac4e2e12) and it's written that 'You currently have TLSv1 enabled'. Might this be part of the problem? Should I fix it?


BIG EDIT: The host that takes care of my SSL just told me ''The SSL that we provide with your contract only protect one domain OR one subdomain, not both''. They told them then that it's why bebechan.net/ebook wasn't protected but bebechan.net was. But, bebechan.net/ebook isn't a subdomain right? It's still part of my domain bebechan.net? Or am I totally wrong? A bit lost here.

Thanks!

I saw similar questions but they didn't resolve my issue.

I have an active SSL on my WordPress website (hosted by IONOS 1and1). If I enter my example.com it goes to HTTPS. If I enter example.com/smth it goes to HTTP (without s), if I enter www.example.com/smth if goes to HTTPS!

So my wish is to force HTTPS on example.com/smth. I created a .htaccess file through Filezilla entering all the code I could find for example :

RewriteEngine OnRewriteCond %{HTTPS} !=onRewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE] 

or

RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L,NE]

I tried it with the wordpress addition:

RewriteEngine OnRewriteCond %{HTTPS} !=onRewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE] # BEGIN WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule># END WordPress

But nothing seems to redirect! (The page is bebechan.net/ebook). Maybe I've done something wrong creating the .htacces or something?

EDIT: Actually, I just checked right now and it's written that the SSL is provided for clickandbuild/bebechan and I indeed have a clickandbuild folder when I check my FTP (see screenshot below) and there is already a .htaccess there. Maybe that's the issue? Maybe I should edit this one instead of creating a new one in the root?

FTP - Directory Structure

So Actually there is already an .htaccess in the folder .../clickandbuild/bebechan which might be where my SSL is. Looks like there is already a https forced written here. Still not working tho. I'm super lost haha.

Content of the .htaccess:

<IfModule mod_deflate.c>    AddOutputFilterByType DEFLATE text/plain    AddOutputFilterByType DEFLATE text/html    AddOutputFilterByType DEFLATE text/xml    AddOutputFilterByType DEFLATE text/css    AddOutputFilterByType DEFLATE text/cache-manifest    AddOutputFilterByType DEFLATE text/javascript    AddOutputFilterByType DEFLATE text/vcard    AddOutputFilterByType DEFLATE text/vnd.rim.location.xloc    AddOutputFilterByType DEFLATE text/vtt    AddOutputFilterByType DEFLATE text/x-component    AddOutputFilterByType DEFLATE text/x-cross-domain-policy    AddOutputFilterByType DEFLATE application/xml    AddOutputFilterByType DEFLATE application/xhtml+xml    AddOutputFilterByType DEFLATE application/rss+xml    AddOutputFilterByType DEFLATE application/javascript    AddOutputFilterByType DEFLATE application/x-javascript    AddOutputFilterByType DEFLATE application/json    AddOutputFilterByType DEFLATE application/ld+json    AddOutputFilterByType DEFLATE application/atom+xml    AddOutputFilterByType DEFLATE application/manifest+json    AddOutputFilterByType DEFLATE application/rdf+xml    AddOutputFilterByType DEFLATE application/rss+xml    AddOutputFilterByType DEFLATE application/schema+json    AddOutputFilterByType DEFLATE application/vnd.geo+json    AddOutputFilterByType DEFLATE application/vnd.ms-fontobject    AddOutputFilterByType DEFLATE application/x-font-ttf    AddOutputFilterByType DEFLATE application/x-javascript    AddOutputFilterByType DEFLATE application/x-web-app-manifest+json    AddOutputFilterByType DEFLATE application/xhtml+xml    AddOutputFilterByType DEFLATE font/eot    AddOutputFilterByType DEFLATE font/opentype    AddOutputFilterByType DEFLATE image/bmp    AddOutputFilterByType DEFLATE image/svg+xml    AddOutputFilterByType DEFLATE image/vnd.microsoft.icon    AddOutputFilterByType DEFLATE image/x-icon</IfModule><IfModule mod_expires.c>    ExpiresActive On    ExpiresByType text/css A2419200    ExpiresByType text/x-component A2419200    ExpiresByType application/x-javascript A2419200    ExpiresByType application/javascript A2419200    ExpiresByType text/javascript A2419200    ExpiresByType text/x-js A2419200    ExpiresByType text/html A3600    ExpiresByType text/richtext A3600    ExpiresByType image/svg+xml A3600    ExpiresByType text/plain A3600    ExpiresByType text/xsd A3600    ExpiresByType text/xsl A3600    ExpiresByType text/xml A3600    ExpiresByType video/asf A2419200    ExpiresByType video/avi A2419200    ExpiresByType image/bmp A2419200    ExpiresByType application/java A2419200    ExpiresByType video/divx A2419200    ExpiresByType application/msword A2419200    ExpiresByType application/vnd.ms-fontobject A2419200    ExpiresByType application/x-msdownload A2419200    ExpiresByType image/gif A2419200    ExpiresByType application/x-gzip A2419200    ExpiresByType image/x-icon A2419200    ExpiresByType image/jpeg A2419200    ExpiresByType application/json A2419200    ExpiresByType application/vnd.ms-access A2419200    ExpiresByType audio/midi A2419200    ExpiresByType video/quicktime A2419200    ExpiresByType audio/mpeg A2419200    ExpiresByType video/mp4 A2419200    ExpiresByType video/mpeg A2419200    ExpiresByType application/vnd.ms-project A2419200    ExpiresByType application/x-font-otf A2419200    ExpiresByType application/vnd.ms-opentype A2419200    ExpiresByType application/vnd.oasis.opendocument.database A2419200    ExpiresByType application/vnd.oasis.opendocument.chart A2419200    ExpiresByType application/vnd.oasis.opendocument.formula A2419200    ExpiresByType application/vnd.oasis.opendocument.graphics A2419200    ExpiresByType application/vnd.oasis.opendocument.presentation A2419200    ExpiresByType application/vnd.oasis.opendocument.spreadsheet A2419200    ExpiresByType application/vnd.oasis.opendocument.text A2419200    ExpiresByType audio/ogg A2419200    ExpiresByType application/pdf A2419200    ExpiresByType image/png A2419200    ExpiresByType application/vnd.ms-powerpoint A2419200    ExpiresByType audio/x-realaudio A2419200    ExpiresByType image/svg+xml A2419200    ExpiresByType application/x-shockwave-flash A2419200    ExpiresByType application/x-tar A2419200    ExpiresByType image/tiff A2419200    ExpiresByType application/x-font-ttf A2419200    ExpiresByType application/vnd.ms-opentype A2419200    ExpiresByType audio/wav A2419200    ExpiresByType audio/wma A2419200    ExpiresByType application/vnd.ms-write A2419200    ExpiresByType application/font-woff A2419200    ExpiresByType application/vnd.ms-excel A2419200    ExpiresByType application/zip A2419200</IfModule><IfModule mod_rewrite.c>    RewriteEngine On    RewriteBase /    RewriteRule ^index\.php$ - [L]    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    RewriteRule . /index.php [L]</IfModule>AddHandler x-mapp-php5.5  .php# BEGIN WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteRule ^index\.php$ - [L]RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule . /index.php [L]</IfModule># END WordPress<IfModule mod_rewrite.c>RewriteEngine OnRewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://www.bebechan.net/$1 [R,L]</IfModule> 

Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>