|
|
Question : Apache RewriteEngine - redirect home page & alternate domain
|
|
|
Answer : Apache RewriteEngine - redirect home page & alternate domain
|
|
Go easy, and do it in two steps
#redirect from domain to domains RewriteCond %{HTTP_HOST} =www\.domain\.com [NC] RewriteRule .* http://www.domains.com%{REQUEST_URI} [L,R=301]
#and now to cgi-bin/myscript.pl, unless it already cgi-bin/myscript.pl RewriteCond %{REQUEST_URI} !cgi-bin/myscript.pl RewriteRule .* http://www.domains.com/cgi-bin/myscript.pl [L,R=301]
|
|
|
|
|