Friday, August 31st, 2007
Article Source: http://www.ssi-developer.net/htaccess/redirecting.shtml
Introduction:
This guide shows you how to use .htaccess to redirect a specific page to another address. This is probably the best way to redirect pages mainly because of the lack of effort it needs to set up and it's not browser dependent like some redirection scripts. If you ...
Posted in Tips Hosting, Tips Webmaster | No Comments »
Thursday, August 30th, 2007
Grab from http://9tutorials.com/2007/05/12/htaccess-for-webmasters.html
When site is “Under Construction??
This lets google crawl, lets me access (1.1.1.1) without a password, and lets access from anyone WITH a password. It also allows for XHTML and CSS validation through w3.org
update combined allow code credit: megaspaz
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 ...
Posted in Tips Hosting, Tips Webmaster | No Comments »