This
should work, but i don't have SSL to test. Put it in a
.htaccess file in your root directory:
Code:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
# the pages are inside the "()" seperated by "|"s
# if it's in a subdirectory, put the whole path (no starting "/")
RewriteRule ^(signup\.php|otherpage\.php|dir/some/thirdpage\.php)$ https://%{HTTP_HOST}%{REQUEST_URI} [QSA,R=301,L]
I'm assuming your SSL runs on the default port (443).