How can I force to SSL/https using .htaccess and mod_rewrite page specific in PHP.
Simple and Easy , just add following
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]