You should include your search term as a parameter, not in the path.
Example:
/search?query=shoes
✅
❌ /search/shoes
– less flexible, less standard for search.
Using a parameter (?query=
It is more scalable, supports filters, and follows best practices for search operations.read more