将网站内容保存为 HTML 以便离线使用且链接有效
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用wget,勾选-k选项
参考:http://www.linuxask.com/questions/mirror-a-web-site-using-wget
Use wget, check the -k option
Reference: http://www.linuxask.com/questions/mirror-a-web-site-using-wget
如果将链接设置为相对路径(例如
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.