18

I would like to link directly to a search results page from a standard link. To give an example of what I'm hoping for, here is some pseudocode:

<a href = "https://www.google.com/search?keywords=My+Search+Parameters">Click here to search Google</a>

Is there any way to do this? I would like to redirect my users directly to a search results page so they can see real results on the web.

Frank
  • 2,050
  • 6
  • 22
  • 40
  • 29
    [https://www.google.com/search?q=how+to+link+directly+to+google+search+results](https://www.google.fi/search?q=how+to+link+directly+to+google+search+results) – JJJ Mar 24 '16 at 16:21
  • 10
    ^ Such a meta response. +1 – Lewis Mar 24 '16 at 16:23
  • 2
    If I had the rep to upvote the first comment, I would. Thanks! – Frank Mar 24 '16 at 17:00
  • How about search for a specific hastag? per example https://www.google.com/search?q=#ExampleTag , wont work, it returns an empty search – Pluda Feb 01 '21 at 15:12
  • 1
    @Pluda you'll need to URL-escape the query - the `#` is interpreted as a document fragment, not a literal hash symbol. The working link would be [google.com/search?q=%23ExampleTag](https://www.google.com/search?q=%23ExampleTag). – Moritz Friedrich May 30 '22 at 19:02

1 Answers1

27

Please have a look at the link below:

http://www.googleguide.com/linking.html

<a href=”http://www.google.com/search?q=Google+tutorial+create+link”>
   Google tutorial create link
</a>
Devnsyde
  • 1,297
  • 1
  • 13
  • 34