I want everything on my site to redirect to https:// So entering with http(s)://www.sslsneak.com would redirect to https://sslsneak.com Can anyone help ?
you could probably use mod_rewrite to do it if you're on Unix. Or talk to your hosting company about setting it up that way for you.
Yeah, Apache is that way to go, you could look into getting a SLL thingy, there about $90 a year I think.
Options +FollowSymlinks RewriteEngine on RewriteCond %{SERVER_PORT} !443$ RewriteRule (.*) https://www.blahblah.com/$1 [R=301,L] Code (markup): let me know if it doesn't work...