Anyone have some working htaccess code to add the www to a url? The one I have gets pissy with a script I'm trying to setup and I can't find the alternative version I had which should work.
Thanks.
Thanks.
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domain.com/$1 [R=permanent,L]
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domain.com/$1 [R=permanent,L]

Comment