Edd, 

   What you're attempting to do is possible using PHP.  The "header()" function 
allows you to accomplish what you're trying to do.  The definition is at  
http://us2.php.net/manual/en/function.header.php.  Putting "header('Location: 
location_to_go_to')" will redirect to wherever you point as long as you put it 
in the script before any HTTP headers are sent.  It can also use relative 
paths. 


Corey 


----- Original Message ----- 
From: "Channel Five" <edd.daw...@gmail.com> 
To: users@httpd.apache.org 
Sent: Tuesday, January 6, 2009 3:58:45 AM GMT -07:00 US/Canada Mountain 
Subject: Re: [us...@httpd] 301 Redirect problem on Apache 2.0.50 

Thanks Krist.. 

So basically I'm attempting the impossible? 
  

On Tue, Jan 6, 2009 at 10:42 AM, Krist van Besien < krist.vanbes...@gmail.com > 
wrote: 



On Tue, Jan 6, 2009 at 11:25 AM, Channel Five < edd.daw...@gmail.com > wrote: 
> Hi 
> 
> I have the following URL's 
> 
> http://www.mydomain.com/topic-guide.php 
> http://www.mydomain.com/topic-guide.php?section=2 
> http://www.mydomain.com/topic-guide.php?section=3 
> http://www.mydomain.com/topic-guide.php?section=4 

You have one url, with an optional parameter, called "section". This 
parameter is handled by your php script. 


> I want to redirect all those ending in ?section=x to 
> 
> http://www.mydomain.com/topic-guide.php 

This is already done. Any URL of the form: 
http://www.mydomain.com/topic-guide.php ?<something> will cause apache 
to process topic-guide.php, with whatever passed as arguments passed 
on to the script. It is up to your script to deal with the arguments. 

Krist 


-- 
krist.vanbes...@gmail.com 
kr...@vanbesien.org 
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-unsubscr...@httpd.apache.org 
  "   from the digest: users-digest-unsubscr...@httpd.apache.org 
For additional commands, e-mail: users-h...@httpd.apache.org 


Reply via email to