Oops...spoke to soon. It actually did work...in that I if someone typed
mysite.com they were redirected to
www.mysite.com
That part was fine...but when I went back to FP to work on the site
upload...i got an error msg about FP extensions not being installed or
something...then I renamed the .htaccess file to .htaccess1, tried
again, and I could upload again - but of course the redirect thing now
doesn't work...
Any ideas?
Here's the code that I have in the .htaccess file:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName
www.sobbi.com
AuthUserFile
/var/chroot/home/content/r/a/n/randyusa/html/_vti_pvt/service.pwd
AuthGroupFile
/var/chroot/home/content/r/a/n/randyusa/html/_vti_pvt/service.grp
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite.com
RewriteRule (.*)
http://www.mysite.com/$1 [R=301,L]
I uploaded it via an FTP program as suggested.
Thanks