Redirecting http traffic to https site using .htaccess file
- Create a .htaccess file using the MAMP PRO Editor and save it to your document root.
- 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>