Enforcing SSL/HTTPS with .htaccess and mod_rewrite for Specified PHP Pages
To enforce SSL/HTTPS for specific PHP pages using .htaccess and mod_rewrite, consider the following approaches:
RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
if (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] !== 'on') { if(!headers_sent()) { header("Status: 301 Moved Permanently"); header(sprintf( 'Location: https://%s%s', $_SERVER['HTTP_HOST'], $_SERVER['REQUEST_URI'] )); exit(); } }
By utilizing these techniques, you can effectively redirect specific PHP pages to their HTTPS versions and enforce SSL/HTTPS for enhanced security.
The above is the detailed content of How Can I Enforce SSL/HTTPS for Specific PHP Pages Using .htaccess and mod_rewrite?. For more information, please follow other related articles on the PHP Chinese website!