View Single Post
Old 2005-06-04, 04:08 PM   #8
cd34
a.k.a. Sparky
 
cd34's Avatar
 
Join Date: Sep 2004
Location: West Palm Beach, FL, USA
Posts: 2,396
For your .htaccess to redirect EVERYTHING to another site while you are researching your content for supporting documentation

Code:
RewriteEngine on
RewriteRule .* http://domain.com/ [R,L]
If you deleted the directories because you don't want to do the research:
Code:
ErrorDocument 404 http://www.domain.com/
If you wanted to redirect http://domain.com/document.html to http://www.domain.com/document.html, use the following:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*) http://www.domain.com/$1 [R=301,L]
__________________
SnapReplay.com a different way to share photos - iPhone & Android
cd34 is offline   Reply With Quote