Hi Guys, quick question about htaccess file. I route all my traffic to my index.php file nd my htacess looks as follows
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
but if i want all the traffic to be https and still threw my index file will how will my htaccess look like then?