Although Wi-Fi is available everywhere these days, you may find yourself without it from time to time. And when you do, there may be certain websites you wish you could save and access while offline---perhaps for research, entertainment, or posterity.

 
How to Find Free Unlimited Wi-Fi Internet Access Almost Anywhere

There's nothing better than scoring free Wi-Fi. Here are some ways to find free unlimited Wi-Fi no matter where you are.

It's easy enough to save individual web pages for offline reading, but what if you want to download an entire website? Well, it's easier than you think! Here are four nifty tools you can use to download any website for offline reading, zero effort required.

1. WebCopy

 

Available for Windows only.

WebCopy by Cyotek takes a website URL and scans it for links, pages, and media. As it finds pages, it recursively looks for more links, pages, and media until the whole website is discovered. Then you can use the configuration options to decide which parts to download offline.

 

The interesting thing about WebCopy is you can set up multiple "projects" that each have their own settings and configurations. This makes it easy to re-download many different sites whenever you want, each one in the same exact way every time.

One project can copy many websites, so use them with an organized plan (e.g. a "Tech" project for copying tech sites).

How to Download an Entire Website With WebCopy

  1. Install and launch the app.
  2. Navigate to File > New to create a new project.
  3. Type the URL into the Website field.
  4. Change the Save folder field to where you want the site saved.
  5. Play around with Project > Rules… (learn more about WebCopy Rules).
  6. Navigate to File > Save As… to save the project.
  7. Click Copy Website in the toolbar to start the process.

Once the copying is done, you can use the Results tab to see the status of each individual page and/or media file. The Errors tab shows any problems that may have occurred and the Skipped tab shows files that weren't downloaded.

But most important is the Sitemap, which shows the full directory structure of the website as discovered by WebCopy.

To view the website offline, open File Explorer and navigate to the save folder you designated. Open the index.html (or sometimes index.htm) in your browser of choice to start browsing.

2. HTTrack

Grab a webpage for offline reading with WinHTTRack

Available for Windows, Linux, and Android.

HTTrack is more known than WebCopy, and is arguably better because it's open source and available on platforms other than Windows, but the interface is a bit clunky and leaves much to be desired. However, it works well so don't let that turn you away.

Like WebCopy, it uses a project-based approach that lets you copy multiple websites and keep them all organized. You can pause and resume downloads, and you can update copied websites by re-downloading old and new files.

How to Download a Website With HTTrack

  1. Install and launch the app.
  2. Click Next to begin creating a new project.
  3. Give the project a name, category, base path, then click Next.
  4. Select Download web site(s) for Action, then type each website's URL in the Web Addresses box, one URL per line. You can also store URLs in a TXT file and import it, which is convenient when you want to re-download the same sites later. Click Next.
  5. Adjust parameters if you want, then click Finish.
 

Once everything is downloaded, you can browse the site like normal by going to where the files were downloaded and opening the index.html or index.htm in a browser.

3. SiteSucker

 

Available for Mac and iOS.

If you're on a Mac, your best option is SiteSucker. This simple tool rips entire websites and maintains the same overall structure, and includes all relevant media files too (e.g. images, PDFs, style sheets).

It has a clean and easy-to-use interface that could not be easier to use: you literally paste in the website URL and press Enter.

One nifty feature is the ability to save the download to a file, then use that file to download the same exact files and structure again in the future (or on another machine). This feature is also what allows SiteSucker to pause and resume downloads.

SiteSucker costs $5 and does not come with a free version or a free trial, which is its biggest downside. The latest version requires macOS 10.13 High Sierra or later. Older versions of SiteSucker are available for older Mac systems, but some features may be missing.

 

4. Wget

Available for Windows, Mac, and Linux.

Wget is a command-line utility that can retrieve all kinds of files over the HTTP and FTP protocols. Since websites are served through HTTP and most web media files are accessible through HTTP or FTP, this makes Wget an excellent tool for ripping websites.

While Wget is typically used to download single files, it can be used to recursively download all pages and files that are found through an initial page:

wget -r -p https://www.makeuseof.com

However, some sites may detect and prevent what you're trying to do because ripping a website can cost them a lot of bandwidth. To get around this, you can disguise yourself as a web browser with a user agent string:

wget -r -p -U Mozilla https://www.makeuseof.com

If you want to be polite, you should also limit your download speed (so you don't hog the web server's bandwidth) and pause between each download (so you don't overwhelm the web server with too many requests):

 
wget -r -p -U Mozilla --wait=10 --limit-rate=35K https://www.makeuseof.com

Wget comes bundled with most Unix-based systems. On Mac, you can install Wget using a single Homebrew command: brew install wget (how to set up Homebrew on Mac). On Windows, you'll need to use this ported version instead.

Which Websites Do You Want to Download?

Now that you know how to download an entire website, you should never be caught without something to read, even when you have no internet access.

But remember: the bigger the site, the bigger the download. We don't recommend downloading huge sites like MakeUseOf because you'll need thousands of MBs to store all of the media files we use.

The best sites to download are those with lots of text and not many images, and sites that don't regularly add new pages or changed. Static information sites, online ebook sites, and sites you want to archive in case they go down are ideal.

If you're interested in more options for offline reading, take a look at how you can set up Google Chrome for reading books offline. And for other ways to read long articles instead of downloading them, check out our tips and tricks.