bencharity
01-14-2009, 05:27 AM
Okay I am very new to .htaccess but have read a ton of posts/blogs but still can't get it to work.
I'm on GoDaddy hosting if that matters.
I need two rewrites, One I wish to rewrite the url so that when someone types in mysite.com it rewrites to www.mysite.com. I tried this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite.come$
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
but it didn't seem to work.
Also I need a redirect and block that stops everyone from accessing my site during construction. I need to be able to access it, I need to be able to validate it, and I want to let google index it. However whenever someone clicks a link, selects a bookmark, or types the address in I want them to be sent to a temp page. I tried this:
AuthName "Under Development"
AuthUserFile /home/askapache.com/.htpasswd
AuthType basic
Require valid-user
Order Deny,Allow
Deny from all
Allow from 1.1.1.1 w3.org googlebot.com google.com google-analytics.com
Satisfy Any
but since I'm a total newbie at this, I didn't really know how to tweak this for my purpose.
I'd love to learn this skill, so any help would be great.
Thanks!
I'm on GoDaddy hosting if that matters.
I need two rewrites, One I wish to rewrite the url so that when someone types in mysite.com it rewrites to www.mysite.com. I tried this:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite.come$
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
but it didn't seem to work.
Also I need a redirect and block that stops everyone from accessing my site during construction. I need to be able to access it, I need to be able to validate it, and I want to let google index it. However whenever someone clicks a link, selects a bookmark, or types the address in I want them to be sent to a temp page. I tried this:
AuthName "Under Development"
AuthUserFile /home/askapache.com/.htpasswd
AuthType basic
Require valid-user
Order Deny,Allow
Deny from all
Allow from 1.1.1.1 w3.org googlebot.com google.com google-analytics.com
Satisfy Any
but since I'm a total newbie at this, I didn't really know how to tweak this for my purpose.
I'd love to learn this skill, so any help would be great.
Thanks!