How to make force HTTPS and PHP MVC with htaccess?
this is the htaccess code for PHP MVC RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [L] what i want is : Force https then go to index.php file and send url data i added new htaccess…