How to redirect a search query from a wordpress search bar to another website?

ForumCategory: WordPress Discussion & TroubleshootHow to redirect a search query from a wordpress search bar to another website?
Mohammad Athar Staff asked 2 years ago
I am working on a wordpress website where i want to redirect my search from my wordpress site to another website and display the results of that search on that website , with the contents of that website
1 Answers
Best Answer
Mohammad Athar Staff answered 2 years ago

Use below HTML code to embed search box:

<form class="turboform" method="POST" action=" https://example.com/domain">
    <div class="input-group review">
      <input type="text" autocomplete="off" spellcheck="false" class="form-control" placeholder="Type Your Website Address" name="url" />
      <span class="input-group-btn"> <button class="btn btn-green" type="submit" id="review-btn"><span class="glyphicon glyphicon-search"></span> REVIEW</button></span>
    </div>
</form>

* Replace “example.com” with yours.