I've been following the instrs here: http://ekstreme.com/phplabs/301-redirection-code.php
What they have is the following:
Add this to your .htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite\.com [nc]
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L]
I tried that and it causes the images and javascript on my site to not work,
not get loaded.
I notice that the instrs for 301 redirect is using fastcgi.
Suggestions?
thanks!