I have enabled HTTPS in the backend of mailwizz, which seems to work great for most devices, but for some reason, mobile devices still won't redirect to the "https://www" secured version.
I was going to push http to https and non-www to www in .htaccess to help aid this. I was planning on using something like this:
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) https://www.example.com%{REQUEST_URI} [L,R=301]
However, I stumbled across this article (https://kb.mailwizz.com/articles/when-using-web-api-delivery-servers-bounce-processing-doesnt-work/) you wrote about the bounce processing url.
What's the correct code for .htaccess so that I can forward http to https and non-www to www while exluding that bounce processing url?
I was going to push http to https and non-www to www in .htaccess to help aid this. I was planning on using something like this:
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) https://www.example.com%{REQUEST_URI} [L,R=301]
However, I stumbled across this article (https://kb.mailwizz.com/articles/when-using-web-api-delivery-servers-bounce-processing-doesnt-work/) you wrote about the bounce processing url.
What's the correct code for .htaccess so that I can forward http to https and non-www to www while exluding that bounce processing url?