搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Firefox appends www before random words in URL bar

  • 10 个回答
  • 1 人有此问题
  • 2 次查看
  • 最后回复者为 Ekci

more options

The problem is that: 1. I copy random word. 2. Press CTRL+T and CTRL+V and press ENTER. Last time it happened it was a word "homography". 3. I end up on the website "http://www.homography/" 4. Why?

It is random, pasting it again in the URL bar does search in Google. I have these settings changed in `about:config`: browser.fixup.alternate.enabled = false browser.fixup.alternate.prefix = (empty) browser.fixup.alternate.suffix = (empty)

What's wrong?

The problem is that: 1. I copy random word. 2. Press CTRL+T and CTRL+V and press ENTER. Last time it happened it was a word "homography". 3. I end up on the website "http://www.homography/" 4. Why? It is random, pasting it again in the URL bar does search in Google. I have these settings changed in `about:config`: browser.fixup.alternate.enabled = false browser.fixup.alternate.prefix = (empty) browser.fixup.alternate.suffix = (empty) What's wrong?
已附加屏幕截图

被采纳的解决方案

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page.

So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Solution to disable the shortcut: see cor-el's reply below.

定位到答案原位置 👍 0

所有回复 (10)

more options

Hmm, that's a strange result. If you were going so fast that Firefox thought you were still holding down the Ctrl key when pressing Enter, then you should get both www. and the beginning and .com at the end. I don't know how you could get only www. at the beginning. ??

If you are trying to search a word or phrase selected in a page in Firefox, consider

right-click > Search [site] for [selected text]

as a workaround or possible time-saver.

more options

jscher2000 said

I don't know how you could get only www. at the beginning. ??

Actually, Ctrl+Enter plus these settings --

Ekci said

I have these settings changed in `about:config`: browser.fixup.alternate.prefix = (empty)
browser.fixup.alternate.suffix = (empty)

-- gives me just the extra www. and not .com. Odd.

由jscher2000 - Support Volunteer于修改

more options

Oh, that's it! So it looks like Ctrl+Enter forces fixup that's bugged and respects suffix setting but ignores prefix?

A fix for me would be turning the shortcut off but I cannot find a way to do this. Thank you for your answer!

more options

选择的解决方案

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page.

So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Solution to disable the shortcut: see cor-el's reply below.

由jscher2000 - Support Volunteer于修改

more options

jscher2000 said

Unfortunately, Firefox doesn't have a feature to disable or reassign built-in keyboard shortcuts. An add-on can intercept many of them by injecting code into the current web page, but I don't think they can do it on the new tab page. So I think for the time being, you'll have to take it a little bit slower so you don't have the Ctrl key down when you hit Enter. Or use the context menu command when applicable.

Ok, I will but shouldn't it be reported as a bug of a fixup? :)

more options

Ekci said

Ok, I will but shouldn't it be reported as a bug of a fixup? :)

I thought about that, but the quick fix of making the prefix correctly blank doesn't help you bypass fixup:

Ctrl+Enter: if prefix = "" and suffix = "" then => http://word/

You need new logic:

Ctrl+Enter: if prefix = "" and suffix = "" then => DO NOT FIXUP

Or a new preference:

browser.fixup_shortcut.enabled = (true|false)

Solution to disable the shortcut: see cor-el's reply below.

由jscher2000 - Support Volunteer于修改

more options

Ok, thank you! I will solve this problem but still hope that there will be an option to disable the shortcut. It seems that I think faster than my fingers can move :)

由Ekci于修改

more options

Possibly you discovered it already but just in case, here's the bug tracker: https://bugzilla.mozilla.org/

more options

Maybe:

  • browser.urlbar.ctrlCanonizesURLs = false
more options

Yes! It did work, thank you @cor-el!