I have a search feature on my site that’s POST based. Now, however, I want to be able to provide links that search for certain keywords, but this isn’t of course possible because the form doesn’t handle GET requests. Is there a way around this?
Share
Set the form’s method to GET
This will work if your search app on the server permits searching via get. Just of note, you should be using GET for search anyway. POST is to make modifications and post data. You’re “getting” search results, so use GET.