File: /home/matchmakinginsti/public_html/seals/.htaccess
<IfModule mod_rewrite.c>
# Require HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www\.matchmakinginstitute\.com$ [OR]
RewriteCond %{HTTP_HOST} ^matchmakinginstitute\.com$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
# Existing files and folders
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .* - [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [L]
# Already rewritten
RewriteRule \.php$ - [L]
# Add a .php extension
RewriteRule ^([^/]+)$ $1.php [QSA,L]
</IfModule>