Yesterday I Installed SSL on the server. Since than I can't reach some pages.
www.example.com/amsterdam/shoes
example.com/amsterdam/
^ both do not redirect to https://, not even http://
www.example.com/amsterdam
^ does redirect to https://
How do I redirect all pages to HTTPS
with www
via .htaccess?
RewriteEngine on
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^ https://www.example.com%{REQUEST_URI} [NC,L,R=301,NE]
This will redirect both http
or non-www
to https://www
Use:
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
OR you can try:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With