I am composing a simple .htaccess re-write to force a single page to use https (inspired by the answers to this question).
Is it better to use RewriteCond, as follows:
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} ^/page\.php$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
or the shorter alternative with the condition in the RewriteRule:
RewriteCond %{HTTPS} off
RewriteRule ^page\.php$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]