diff --git a/src/App.vue b/src/App.vue
index faeb0eead14e10dd4d325e8ba2a9677db69282e7..fa38a9a80b4c7202d0618486cab7031a26e66f1f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -91,7 +91,7 @@ export default {
         self.article = {lemmas: [], body:{pronunciation: [], definitions: [], etymology: []}}
         axios.get(api_endpoint + '/' + self.lang + '/_search?q=' + event.q)
         .then(function(response){
-          self.$router.push('/' + self.lang + '/_search?q=' + event.q)
+          self.$router.push('/' + self.lang + '/search?q=' + event.q)
           self.search_results = response.data.hits.hits
           self.waiting = false
           history.replaceState({article: self.article, search_results: self.search_results, lang: self.lang}, '')