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]