|
|
|
|
|
|
|
|
|
#10 |
|
a.k.a. Sparky
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] Code:
ErrorDocument 404 http://www.domain.com/ 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 |
|
|
|
|
|