Search page all records are displayed

Hello!
If you follow a direct link to the search page, all records are displayed! Please tell me how to make sure that posts are not displayed when clicking on links:

site.com/seach
site.com/search?term=

Hi @9607801,

Could you provide a bit more context? Are there any plugins involved?

Thank you.

I checked this in the default theme, in the blog search and got the following result.
No plugins are used.

Search Page

url = "/blog/search"
layout = "default"
title = "Search Blog Posts"
meta_title = "Search - Blog"

[collection blog]
handle = "Blog\Post"

[resources]
vars[activeNavLink] = "blog"
==
{% set searchTerm = get('term')|trim %}
{% set posts = blog.searchWhere(searchTerm, ['title', 'content']).paginate(16) %}
{% put pageTitle=searchTerm ~ ' - Search Results' %}

<div class="container">
    <header>
        <h1>{{ searchTerm }} - Search Results</h1>
    </header>
    <div class="row">
        <div class="col-md-12">
            <form class="mb-5">
                <div class="input-group">
                    <div class="form-control-search">
                        <input type="text" name="term" class="form-control" placeholder="Search" value="{{ searchTerm }}">
                        <span class="search-icon"></span>
                    </div>
                </div>
            </form>

            <div class="blog-featured row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4 g-3 pb-5">
                {% for post in posts %}
                    {% partial 'blog/post-card' post=post %}
                {% endfor %}
            </div>
            <nav class="blog-pagination" aria-label="Pagination">
                {{ pager(posts, { withQuery: true }) }}
            </nav>
        </div>
    </div>
</div>