Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Apache: Users

[Fwd: Redirect URL with arguments]

 

 

Apache users RSS feed   Index | Next | Previous | View Threaded


sviollat at abritel

Jun 30, 2008, 1:46 AM

Post #1 of 7 (269 views)
Permalink
[Fwd: Redirect URL with arguments]

Hello,

anyone got an idea about how to do this ?

Thanks
Attachments: message-rfc822.eml (4.09 KB)


covener at gmail

Jun 30, 2008, 3:51 AM

Post #2 of 7 (258 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

On Mon, Jun 30, 2008 at 4:46 AM, Sylvain Viollat <sviollat[at]abritel.fr> wrote:

> RedirectMatch permanent / http://www.mydomain.com
>
> The problem is that all queries which contain something after the .net/ (eg.
> index.php?ref=10), are redirect to http://www.mydomain.com/ref=10

If you use RedirectMatch, you usually need to match something and
actually pass it on. Try just Redirect.


--
Eric Covener
covener[at]gmail.com

---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org


sviollat at abritel

Jun 30, 2008, 5:29 AM

Post #3 of 7 (256 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

Thanks for your answer. I've try to use Redirect instead of
RedirectMatch but result is the same. I'm still getting redirect with
the end of the URL.



Eric Covener wrote:
> On Mon, Jun 30, 2008 at 4:46 AM, Sylvain Viollat <sviollat[at]abritel.fr> wrote:
>
>> RedirectMatch permanent / http://www.mydomain.com
>>
>> The problem is that all queries which contain something after the .net/ (eg.
>> index.php?ref=10), are redirect to http://www.mydomain.com/ref=10
>
> If you use RedirectMatch, you usually need to match something and
> actually pass it on. Try just Redirect.
>
>

--
Sylvain Viollat
Administrateur Système et Réseau
Tél: +33 (0)4 91 11 00 77 (interne: 515)

http://www.abritel.fr
Groupe HomeAway

---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org


uhlar at fantomas

Jul 1, 2008, 1:05 AM

Post #4 of 7 (247 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

On 30.06.08 14:29, Sylvain Viollat wrote:
> Thanks for your answer. I've try to use Redirect instead of
> RedirectMatch but result is the same. I'm still getting redirect with
> the end of the URL.

> >>RedirectMatch permanent / http://www.mydomain.com
> >>
> >>The problem is that all queries which contain something after the .net/
> >>(eg.
> >>index.php?ref=10), are redirect to http://www.mydomain.com/ref=10

simply changing RedirectMatch to Redirect won't help you. both directived
will change old matching part to new, e.g.:

Redirect / /blah/

will change /hello to /blah/hello
Note the trailing slash, it's important, because:

Redirect / /blah

will change /hello to /blahhello

You should try

RedirectMatch /.* http://www.mydomain.com.

which could work as you wish.
--
Matus UHLAR - fantomas, uhlar[at]fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
Chernobyl was an Windows 95 beta test site.

---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org


sviollat at abritel

Jul 2, 2008, 12:34 AM

Post #5 of 7 (231 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

Hi Matus,

thaznks for your answer. I've try to use :

RedirectMatch /.* http://www.mydomain.com

Unfortunately, I'm still getting redirect with the arguments I pass in
the URL.

Thanks,


Matus UHLAR - fantomas wrote:
> On 30.06.08 14:29, Sylvain Viollat wrote:
>> Thanks for your answer. I've try to use Redirect instead of
>> RedirectMatch but result is the same. I'm still getting redirect with
>> the end of the URL.
>
>>>> RedirectMatch permanent / http://www.mydomain.com
>>>>
>>>> The problem is that all queries which contain something after the .net/
>>>> (eg.
>>>> index.php?ref=10), are redirect to http://www.mydomain.com/ref=10
>
> simply changing RedirectMatch to Redirect won't help you. both directived
> will change old matching part to new, e.g.:
>
> Redirect / /blah/
>
> will change /hello to /blah/hello
> Note the trailing slash, it's important, because:
>
> Redirect / /blah
>
> will change /hello to /blahhello
>
> You should try
>
> RedirectMatch /.* http://www.mydomain.com.
>
> which could work as you wish.


---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org


Severin.Gehwolf at uibk

Jul 2, 2008, 12:58 AM

Post #6 of 7 (231 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

Hi!

> thaznks for your answer. I've try to use :
>
> RedirectMatch /.* http://www.mydomain.com
>
> Unfortunately, I'm still getting redirect with the arguments I pass in
> the URL.

How about using RewriteRule (mod_rewrite) like the following:

RewriteEngine On
RewriteRule ^/.*$ http://www.yourdomain.com [R=301,L]

severin



> Matus UHLAR - fantomas wrote:
> > On 30.06.08 14:29, Sylvain Viollat wrote:
> >> Thanks for your answer. I've try to use Redirect instead of
> >> RedirectMatch but result is the same. I'm still getting redirect with
> >> the end of the URL.
> >
> >>>> RedirectMatch permanent / http://www.mydomain.com
> >>>>
> >>>> The problem is that all queries which contain something after the .net/
> >>>> (eg.
> >>>> index.php?ref=10), are redirect to http://www.mydomain.com/ref=10
> >
> > simply changing RedirectMatch to Redirect won't help you. both directived
> > will change old matching part to new, e.g.:
> >
> > Redirect / /blah/
> >
> > will change /hello to /blah/hello
> > Note the trailing slash, it's important, because:
> >
> > Redirect / /blah
> >
> > will change /hello to /blahhello
> >
> > You should try
> >
> > RedirectMatch /.* http://www.mydomain.com.
> >
> > which could work as you wish.
>
>
> ---------------------------------------------------------------------
> 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[at]httpd.apache.org
> " from the digest: users-digest-unsubscribe[at]httpd.apache.org
> For additional commands, e-mail: users-help[at]httpd.apache.org
>


---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org


sviollat at abritel

Jul 2, 2008, 2:53 AM

Post #7 of 7 (224 views)
Permalink
Re: [Fwd: Redirect URL with arguments] [In reply to]

Hi Severin

thanks for your answer, but I'm still getting arguments in the URL when
redirect is done. Unfortunately I'm not that good at mod_rewrite...

Sylvain

Severin Gehwolf wrote:
> Hi!
>
>> thaznks for your answer. I've try to use :
>>
>> RedirectMatch /.* http://www.mydomain.com
>>
>> Unfortunately, I'm still getting redirect with the arguments I pass in
>> the URL.
>
> How about using RewriteRule (mod_rewrite) like the following:
>
> RewriteEngine On
> RewriteRule ^/.*$ http://www.yourdomain.com [R=301,L]
>
> severin
>
>
>
>> Matus UHLAR - fantomas wrote:
>>> On 30.06.08 14:29, Sylvain Viollat wrote:
>>>> Thanks for your answer. I've try to use Redirect instead of
>>>> RedirectMatch but result is the same. I'm still getting redirect with
>>>> the end of the URL.
>>>>>> RedirectMatch permanent / http://www.mydomain.com
>>>>>>
>>>>>> The problem is that all queries which contain something after the .net/
>>>>>> (eg.
>>>>>> index.php?ref=10), are redirect to http://www.mydomain.com/ref=10
>>> simply changing RedirectMatch to Redirect won't help you. both directived
>>> will change old matching part to new, e.g.:
>>>
>>> Redirect / /blah/
>>>
>>> will change /hello to /blah/hello
>>> Note the trailing slash, it's important, because:
>>>
>>> Redirect / /blah
>>>
>>> will change /hello to /blahhello
>>>
>>> You should try
>>>
>>> RedirectMatch /.* http://www.mydomain.com.
>>>
>>> which could work as you wish.
>>
>> ---------------------------------------------------------------------
>> 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[at]httpd.apache.org
>> " from the digest: users-digest-unsubscribe[at]httpd.apache.org
>> For additional commands, e-mail: users-help[at]httpd.apache.org
>>
>
>
> ---------------------------------------------------------------------
> 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[at]httpd.apache.org
> " from the digest: users-digest-unsubscribe[at]httpd.apache.org
> For additional commands, e-mail: users-help[at]httpd.apache.org
>
>


---------------------------------------------------------------------
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[at]httpd.apache.org
" from the digest: users-digest-unsubscribe[at]httpd.apache.org
For additional commands, e-mail: users-help[at]httpd.apache.org

Apache users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.