SSL working on desktop, but not on mobile (Apple) devices

Author: Ron    Posted: 20 February 2023   Viewed: 3730 times   Tag: #Browser 

Why is my SSL not working on mobile?


Solution:

1. upgrade-insecure-requests 


2. Add this rule to the top of your .htaccess file that is located in your website root directory. If it is not located here, feel free to create it manually.

RewriteEngine On

RewriteCond %{HTTPS} !=on

RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Your Kind Action