basically what i want is redirect al request to use HTTPS instead of http
I have this in my htaccess so far and it worked great: Code:
RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC] RewriteRule (.*) https://www.%1%{REQUEST_URI} [L,R=301]