How would I make http://phreque.com automatically add the www. to the address? (using a Security certificate and it needs to bet set properly to take full advantage, even for lazy typers like me
)
Thanks
Jacob
)Thanks
Jacob
)Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^phreque.com [NC]
RewriteRule ^(.*)$ http://www.phreque.com/$1 [L,R=301]
Comment