One idea is; Instead of "masking" it, do a simple if/else to test to see of the parameters exist in the URL, and if they don't, then throw back your own error... Something like:
<?php
if(isset($_GET['parameter1']) && $_GET['parameter1'] != "") {
// It exists, so show it.
} else {
// It either doesn't exist, or it's blank, so show something else.
}
?>
This is a bit simplified, but you should get the idea...
Another option is... Don't make it a clickable link in the BreadCrumb trail... Only make subsequent clickthrus into clickable links. The above idea can be easily implemented to assist in this.
Post what code you have, and we can help provide better and more substantial ideas toward meeting your goals.