Tag Archives: HTTPS

HTTPS Redirects

Redirecting HTTP to HTTPS for a whole site using virtual hosts:





#Basics snipped for brevity....


   RewriteEngine on
   #RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]


RedirectPermanent / https://www.foo.com/

WordPress SSL Deficiency

WordPress needs to get with the program and not force URLs in the settings page to contain HTTP or HTTPS.

They need to build a session that knows which one a visitor is using. I won’t go into the whole login and admin SSL issue.