为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Recalling a page from History erases the old history date. Any way to retain that older history entry along with the current one?

  • 2 个回答
  • 2 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

Example. I visited the Wikipedia ten days ago to learn about e.g. the Lorentz force. Today I want to recall, and return to, the same page. I open History on Firefox, select the past (i.e. current) month, and scroll down until I see the Wikipedia entry. If I double click on it, the remembered page will display under the current browser tab. However, that old history entry disappears! Only the new present day history entry for that web page now exists. It is often useful to recall what sequence of web pages was visited in the past, and what pages were visited successively around some past time. If the old history could be retained, that would be useful. Is there a setting that will ensure this behavior?

Example. I visited the Wikipedia ten days ago to learn about e.g. the Lorentz force. Today I want to recall, and return to, the same page. I open History on Firefox, select the past (i.e. current) month, and scroll down until I see the Wikipedia entry. If I double click on it, the remembered page will display under the current browser tab. However, that old history entry disappears! Only the new present day history entry for that web page now exists. It is often useful to recall what sequence of web pages was visited in the past, and what pages were visited successively around some past time. If the old history could be retained, that would be useful. Is there a setting that will ensure this behavior?

所有回复 (2)

more options

I don't think there is any built-in way to do this. The Library dialog will always show only the latest visit date.

The places.sqlite database certainly retains much more information, but it is inconvenient to query. You can run custom searches using the SQLite Manager extension (screen shot example attached), but this is quite inconvenient.

There might be other add-ons that extend Firefox's history feature. When I searched, most seemed to be for clearing history rather than researching it. You could take a further look, check reviews, and see whether any look useful: https://addons.mozilla.org/en-US/firefox/

P.S. The query in the attached screenshot:

SELECT url, title, datetime(visit_date/1000000,'unixepoch') AS visited
FROM moz_places INNER JOIN moz_historyvisits ON moz_historyvisits.place_id = moz_places.id
WHERE url LIKE '%jeffersonscher.com/res%'
ORDER BY url ASC, visited DESC

由jscher2000 - Support Volunteer于修改

more options

You can create SQLite queries to show specific history entries.

This query shows the visits made in December:

place:beginTime=1385856000000000&endTime=1388534399000000&sort=4&type=1

All history items:

place:sort=4&type=1

You can create a bookmark with the location set to the place query.
You need to close and restart Firefox to make the query work properly.