将网站内容保存为 HTML 以便离线使用且链接有效

发布于 2024-09-24 03:52:30 字数 184 浏览 7 评论 0原文

我正在使用 WordPress 制作一个大约 10 个页面的网站。我需要保存它,整个网站的链接可在每次更新内容时供离线使用。现在我正在做的是保存每个页面然后链接所有内容等..但我想进行此编程..所以我不必手动执行或者是否已经有任何工具或类?

更新: 我正在下载用于创建离线文档之类的内容,这些内容将在 CD 上分发,因此链接应该是相对的。

I'm having a site done in wordpress with some 10 pages. I'll need to save it, the whole site with the links working for offline use every time i update the content. Now what am doing is save each page then link everything etc.. but i want to do this programing.. so i dont have to do manually or are there any tools or class already?

UPDATE:
I'm downloading for creating a offline documentation kind of stuff, which will be distributed on CD's so links should be relative.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我一向站在原地 2024-10-01 03:52:30

使用wget,勾选-k选项

  -k,  --convert-links      make links in downloaded HTML point to local files.

参考:http://www.linuxask.com/questions/mirror-a-web-site-using-wget

Use wget, check the -k option

  -k,  --convert-links      make links in downloaded HTML point to local files.

Reference: http://www.linuxask.com/questions/mirror-a-web-site-using-wget

逆蝶 2024-10-01 03:52:30

如果将链接设置为相对路径(例如href="/foo/bar.html"),则可以完成此操作。

否则,我建议在本地计算机上设置 Apache 或 IIS 作为测试环境,并在代码准备好用于生产时将其上传到 Web 服务器。

If you set the links to a relative path (eg href="/foo/bar.html"), this can be accomplished.

Otherwise, I suggest setting up Apache or IIS on your local machine to be your test environment, and upload it to the web server when your code is ready for production.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文