I am trying to write the GET request for the search API. I am writing it like this http://localhost:8280/solr/1.0/search?searchText=abc
, but I am getting a 404. If I'll write it as http://localhost:8280/solr/1.0/
, I'm able to get the JSON response data.
I wrote it is as /*
and getting the response using the URL http://localhost:8280/solr/1.0/
.
If I am writing it as /search*
I'm not getting the 404 (http://localhost:8280/solr/1.0/search?searchText=abc
).
Where am I getting wrong?