Re: Question about HTTP 301 permanent redirects

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Kevin L'Huillier wrote:
> On 27/06/05, Dr. Brad Lustick <sales@xxxxxxxxxxxxxxxx> wrote:
>>I'm a novice trying to understand the exact construction of code for doing an HTTP 301 permanent redirect for a server
>>coded in PHP. Could someone please tell me how I would handle the following example?
> 
> In your case you might want to do something like:
> 
> $article = $_REQUEST['i'];
> // some validation of $article if necessary
> $url = sprintf('/services.php/%s'. $i);
> header('Location: ' . $url);

WRONG. He specifically said please only reply if you know how. Obviously
you do not.

To do an HTTP/1.1 *301 Permanent Redirect* not a *302 Found* Redirect as
you described, that code would need to be altered to:

$article = $_REQUEST['i'];
// some validation of $article if necessary
$url = sprintf('/services.php/%s'. $i);
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $url);

Jasper

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux