This repository serves as a functional website archive, for sites that were at one point created and hosted for a certain purpose, but are no longer needed.
As many of these sites were dynamic at one point, the command:
wget -P . -mkEpnp --user-agent="" -e robots=off -E https://example.com/ --no-check-certificate
Has been used to preserve these sites in static form, although some have needed some adjustments to retain certain functionality.
Due to strict MIME-type checking from browsers, Javascript often does not work after using the above command, as the files it creates may contain a query string (eg. jquery.js?ver=1.2.1). These must be renamed, and references to them changed, usually through the use of the command:
find ./ -type f -exec sed -i -e 's/\%3F/\?/g' {} \;