Feeds:
Posts
Comments

Archive for August, 2009

12 htaccess Tips

1. Redirect to a secure https connection
If you want to redirect your entire site to a secure https connection, use the following:

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Read Full Post »