Thanks, I understand now.
This is not what Shane suggested as a workaround and what was implemented with the Post Body ShortCode.
See, that Search result is a WordPress Query, and it will show one, or more results potentially.
That's why those can't lead to a single result.
In google for example, if you search by anything, you'll get many results.
You can click on one and you'll be lead to the actual page.
That is the same with the kind of search results of Views, or in an Archive.
It seems in your case each query can return only ONE result.
And you want to bypass that ONE result, and lead directly to the actual post.
If you want to do that you do not need Views, to query the database and find (potentially many) results.
You would only need a Select or Text input and when a Submit button is pressed, you'd need to redirect to the your-site.com/your-post-slug to which the ONE results correspond.
This could be done with several approaches but all would involve some custom code, likely.
You'd need to get the post to which that ZIP code belongs to (that's I guess why you use Views for it, which helps build that query and show the result), and then instead of displaying the result, you would have to get the slug of that post and append it to the URL and redirect to that URL on Submit of the "search".
However, this is an unusual approach, because a query usually will return more than one result, which then will make such redirect impossible, because there would be MANY posts to redirect to.
Are you sure your search results always will be only showing ONE possible outcome?
In this case, it is probably easier to generate some form of Select field or text field without Views and create a custom action on Submit, that redirects to the post where that ZIP applies to.
For this Views could be used, together with its API https://toolset.com/documentation/programmer-reference/views-api/#get_view_query_results
This helps you get results of a View, without actually inserting the View results in a page, so you could use that to generate results for your ZIP query and take that result to perform a redirect
But I am not suggesting this, as it will break as soon you've more than one result each query term.