You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Daniel Abad <da...@cidadei.com.br> on 2002/03/16 00:33:46 UTC

Question...

Hello everybody!

Here my question....

I´m trying to configure Virtual Hosts using mod_rewrite, but I need to
redirect all URLs to my domain, like this:
http://www.test.com.br ->> http://test.mydomain.com.br


Take a look:

RewriteEngine on
RewriteCond %{HTTP_HOST}        !.*\.mydomain\.com\.br.*
RewriteRule ^(.*)               http://%{HTTP_HOST}.mydomain.com.br$1 [R]

VirtualDocumentRoot /path/vhosts/%1.1/%1.2/%1/htdocs



See the response from server:
"http://www.test.com.br.mydomain.com.br/index.html"



Someone knows how to configure Apache mod_rewrite to redirect to:
http://test.mydomain.com.br/index.html ???

 
Tks all!

Daniel.

---------------------------------------------------------------------
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@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Question...

Posted by Joshua Slive <jo...@slive.ca>.
Daniel Abad wrote:

> I´m trying to configure Virtual Hosts using mod_rewrite, but I need to
> redirect all URLs to my domain, like this:
> http://www.test.com.br ->> http://test.mydomain.com.br
> 
> 
> Take a look:
> 
> RewriteEngine on
> RewriteCond %{HTTP_HOST}        !.*\.mydomain\.com\.br.*
> RewriteRule ^(.*)               http://%{HTTP_HOST}.mydomain.com.br$1 [R]
> 
> VirtualDocumentRoot /path/vhosts/%1.1/%1.2/%1/htdocs
> 

I do believe I've seen this question before....

It is hard to tell what you are trying to do, especially since you are 
mixing mod_vhost_alias and mod_rewrite, but here is a guess at the 
mod_rewrite part:

RewriteEngine on
RewriteCond %{HTTP_HOST}  !mydomain\.com\.br [NC]
RewriteCond %{HTTP_HOST}  www\.(.*)\.com\.br [NC]
RewriteRule ^(.*)         http://%1.mydomain.com.br$1 [R]

Joshua.


---------------------------------------------------------------------
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@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org