I doubt it would be very useful... your SSL certificate will have a CN set to a specific
hostname (such as secure.example.com), if you use redirects on it at all, you will get a
certificate error at one of the stages.
Say you want to redirect
https://secure.example.com to
https://example.com - The SSL
certificate will be for secure.example.com, which will validate ok when the client first
connects, but when the client makes the connection for the redirected site, the certificate
will not verify due to the hostname being different.
Of course, if you are using self-signed certificates, you'll get an error regardless.
If you did want to do it anyway, the procedure is exactly the same as it is for standard
http, only replace the http:// with https://
If you wanted to make sure that the visitor was using SSL, then you could do something like
this:
RewriteEngine On
RewriteCond %{HTTPS} !^on [NC]
RewriteRule ^(.*)$ https://secure.domain.com/$1 [L,R=301]