This is something to be handled on the code side, not in the URL.
You would do something like this:
website.php?search!=10¬=1
and then in that webpage:
if($not==1)
{
// code to search all but the value in $search
}
else
{
// otherwise, search using the value of $search
}
Or did I, like everyone else, misunderstand you?