Re: [users@httpd] Doubt or problem with redirect - Help please.

2012-01-30 Thread Matus UHLAR - fantomas
On 25.01.12 19:03, Mathijs wrote: Some possible solutions to this, assuming www.someaddress.com has a virtualhost: Simplest way is with a redirect: VirtualHost *:80 ServerName www.someaddress.com Redirect / http://www.otheraddres.com?mode=1 /VirtualHost RedirectMatch /.*

[users@httpd] Doubt or problem with redirect - Help please.

2012-01-25 Thread Antonio Fernández Pérez
Hi guys, I have a doubt. I would like to know how can I do this: When people write in browser www.someaddress.com, this points to www.otheraddres.com?mode=1.How can I do it? Should I to add an alias or modifying apache configuration? Please help me. Regards, -- *Antonio Manuel Fernández

Re: [users@httpd] Doubt or problem with redirect - Help please.

2012-01-25 Thread Mathijs
Some possible solutions to this, assuming www.someaddress.com has a virtualhost: Simplest way is with a redirect: VirtualHost *:80 ServerName www.someaddress.com Redirect / http://www.otheraddres.com?mode=1 /VirtualHost Without a redirect you would need a proxy setup (and mod_proxy loaded),