Redirect Web Pages As time goes by, we may want to change URL of website into optimized ones for search engines in order to rank… Read More »How to Redirect Web Page
PHP provides a global variable $_SERVER['HTTPS'] that can be checked whether the clients are connecting over SSL or not. For example: <?php if (!isset($_SERVER['HTTPS']) ||… Read More »How to Force Clients to Use HTTPS by PHP