Search

Redirecting http traffic to https site using .htaccess file

  1. Create a .htaccess file using the MAMP PRO Editor and save it to your document root.
  2. Add the following lines to your .htaccess file.
<ifmodule mod_rewrite.c="">  
RewriteEngine On   
RewriteCond %{HTTPS} off    
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]    
</ifmodule>