APACHE::
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(waterfortheoppressed.com) [NC]
RewriteRule ^(.*)$ http://www.wfto.cc$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^(www.waterfortheoppressed.com) [NC]
RewriteRule ^(.*)$ http://www.wfto.cc$1 [R=301,L]
LIGHTTPD::
$HTTP["host"] =~ "^(waterfortheoppressed\.com)|((www\.)?waterfortheoppressed\.com)$" {
server.document-root = "/var/www/wfto.cc"
url.redirect = (
"^/(.*)" => "http://www.wfto.cc/$1",
"" => "http://www.wfto.cc/"
)
}
|