Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
https://www.domain.com
version of your site. All of these others should make it there in one single redirect:http://www.domain.com
http://domain.com
https://domain.com
<IfModule mod_rewrite.c>
# FORCE HTTP TO HTTPS WITH NON-WWW
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
https://domain.com
. I can't explain it to you. My regex skills suck and I put it together years ago with help from a friend.https://www
or whatever you prefer. Otherwise it runs through the big chunk of code first and takes multiple leaps.https://www.x x x.com
instead of https://x x x .com
mentioned in the code, does it require any modification?