|
Posted by d on 09/26/28 11:37
"Kimmo Laine" <spam@outolempi.net> wrote in message
news:Dl5zf.3546$sO4.1414@reader1.news.jippii.net...
> "wd" <n23@nospam.invalid> wrote in message
> news:pan.2006.01.17.11.23.23.321125@nospam.invalid...
>>I want my server to send a 404 header if a URL with a query string is
>> requested. So if a browser or spider requests something
>> like
>> www. my_site .com?p=chair
>> they would get a 404...
>>
>> But if they request
>> www. my_site .com/chair.htm
>> everything would be normal.
>>
>> With some assistance this is what I have so far, but it isn't working
>> correctly. It always displays the 404, even when there is no question
>> mark in the URL. Also, I would like the page to stop displaying anything
>> after the "HTML>>>" if it sends the 404 error, but I'm not sure how to do
>> it:
>>
>>
>> if (isset($_SERVER["QUERY_STRING"])) {
>
>
> Try something like if(sizeof($_GET)){...
Just do this:
if ($_SERVER["QUERY_STRING"]=="") {
// OK
} else {
// Query string present
}
> --
> "En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviφ
> spam@outolempi.net | Gedoon-S @ IRCnet | rot13(xvzzb@bhgbyrzcv.arg)
Navigation:
[Reply to this message]
|