You are not logged in.
e.g.
When search "a b c" in chromium address bar, the url is "https://www.bing.com/search?q=a+b+c".
When search "a b c" in the web page, the url is "https://www.bing.com/search?q=a%20b%20c".
PROBLEM
Usually the search result of the 2nd case is what's expected.
QUESTION
Can it work in the web page way when search via address bar?
Last edited by jronald (2025-12-10 10:20:34)
Offline
When search "a b c" in the web page, the url is "https://www.bing.com/search?q=a%20b%20c".
Not in my bing… what makes you think this would yield different search results?
Online
what makes you think this would yield different search results?
I have tested it.
Just try the hard-coded urls and compare the results.
Offline
The show the exact same results. At least for your example.
Online
OK, I've just tested "deepseek-ocr flash-attention".
For www.bing.com, the results are the same.
For cn.bing.com, the results are quite different.
Last edited by jronald (2025-12-08 13:50:39)
Offline
I can confirm that the chinese page actually uses %20 to join the input (though the results stay the same, but that might relate to generally how bing behaves in china vs. elsewhere, the chinese page suggests and searches for "winnie the pooh" and afaiu that's not a thing *in* china)
The urls bars just substitute %s for a search token to generate the final url, I've not seen this configurable anywhere - you'd likely have to patch the browser code.
(nb. that searching for "foo%20bar" will not work since the browser will simply encode the "%")
Online
UPDATE
When using "q=%S" instead of "q=%s",
though in the address bar, the url is the form "a%20b%20c" instead of "a+b+c",
the result is still as expected,
it is very diffent from the result from searching in the web page.
---
As I guess, changing "https://cn.bing.com/search?q=%s&ensearch=1" to "https://cn.bing.com/search?q=%S&ensearch=1" solves the problem, ![]()
Last edited by jronald (2025-12-13 03:44:58)
Offline