I posted a bit ago asking about a redirect from mysite.com to
www.mysite.com and got it working. Now however this seems to be breaking my blog (wordpress).
Again I'm very new to htaccess, but is there a way to redirect all my site as above
except a certain subfolder (eg. /blog/)?
Thanks in advance,
Ben
by the way, I'm using this:
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]