On Mon, Apr 21, 2008 at 1:42 AM, Hank <heskin@xxxxxxxxx> wrote: > I have found several ways to non-silently redirect http://domainA.com to > http://basedomain/siteA, but that's not good enough. It needs to be a > silent re-direct. As someone else allready pointed out: There is no such thing as a "silent" re-direct. What you want is called proxying. The only way I could imagine doing this would be using rewrite rules. /home/user/public_html/.htaccess would then have to contain something like this: RewriteEngine On RewriteBase / RewriteCond $HTTP_HOST DomainA.com RewriteRule ^(.*)$ http://basedomain.com/SiteA/$1 [P] RewriteCond $HTTP_HOST DomainB.com RewriteRule ^(.*)$ http://basedomain.com/SiteB/$1 [P] Krist -- krist.vanbesien@xxxxxxxxx krist@xxxxxxxxxxxxx Bremgarten b. Bern, Switzerland -- A: It reverses the normal flow of conversation. Q: What's wrong with top-posting? A: Top-posting. Q: What's the biggest scourge on plain text email discussions? --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx