Since changing my gallery over to https, I have this at the top of my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
RewriteBase /
....
</IfModule>
It's the same as the place you linked so something is probably wrong with your .htaccess file. What are its contents currently?