diff --git a/data/org.gnome.epiphany.gschema.xml b/data/org.gnome.epiphany.gschema.xml
index 6540572..e60a082 100644
--- a/data/org.gnome.epiphany.gschema.xml
+++ b/data/org.gnome.epiphany.gschema.xml
@@ -16,7 +16,7 @@
Address of the user’s home page.
- 'https://duckduckgo.com/?q=%s&t=epiphany'
+ 'https://duckduckgo.com/html/?q=%s&t=epiphany'
URL Search
DEPRECATED: This key is deprecated and ignored. Use /org/gnome/epiphany/search-engines instead.
@@ -29,9 +29,7 @@
- [('DuckDuckGo', 'https://duckduckgo.com/?q=%s&t=epiphany', '!ddg'),
- ('Google', 'https://www.google.com/search?q=%s', '!g'),
- ('Bing', 'https://www.bing.com/search?q=%s', '!b')]
+ [('DuckDuckGo', 'https://duckduckgo.com/html/?q=%s&t=epiphany', '!ddg')]
Default search engines.
List of the default search engines. It is an array in which each search engine is described by a name, an address, and a bang (shortcut).
diff --git a/lib/ephy-search-engine-manager.h b/lib/ephy-search-engine-manager.h
index 2e92396..c53684e 100644
--- a/lib/ephy-search-engine-manager.h
+++ b/lib/ephy-search-engine-manager.h
@@ -30,7 +30,7 @@ G_BEGIN_DECLS
* the version used in your country. For example for the french version :
* replace the ".com" with ".fr" : "https://duckduckgo.fr/?q=%s&t=epiphany"
*/
-#define EPHY_SEARCH_ENGINE_DEFAULT_ADDRESS _("https://duckduckgo.com/?q=%s&t=epiphany")
+#define EPHY_SEARCH_ENGINE_DEFAULT_ADDRESS _("https://duckduckgo.com/html/?q=%s&t=epiphany")
#define EPHY_TYPE_SEARCH_ENGINE_MANAGER (ephy_search_engine_manager_get_type ())