<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/\.well-known/
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteRule ^home/?$ index.php [NC,L]
RewriteRule ^aboutNEWMONT/?$ aboutus.php [NC,L]
RewriteRule ^products/?$ products.php [NC,L]

</IfModule>