ありがとうございます!私は、ほぼ1か月間、私の問題に対するこの答えを探してきました。私の問題は、一部のファイルをhttpsに、残りをhttpに書き換える方法でしたが、上記を変更して機能させることができました。これが私のコードの一部です。(サイトの実際の .htaccess には、さらに多くのファイルがあります。)
#################################################################
# To only change certain files from http to https, the rest from
# https to http. Absolute links are set up throughout the site,
# but if a visitor for some reason edits the URL in the address
# bar, the URL will change back to the proper format.
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^alvingolf\.com$ [NC]
RewriteCond %{HTTPS} on
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{REQUEST_FILENAME} !^.*contact-us.html$
RewriteCond %{REQUEST_FILENAME} !^.*register-for-tournaments.html$
RewriteCond %{REQUEST_FILENAME} !^.*form.htm$