查询参数更改的下载/镜像网页页面

假设我要下载使用单路径域的网页(包括CSS和图像)。它根据查询参数显示当前页面(称为“页面”)。

例:

`domain.com/index.php?page=homepage`
`domain.com/index.php?page=p1`
`domain.com/index.php?page=p2_sub`
`domain.com/index.php?page=p3`
`domain.com/index.php?page=Special:logout`
`domain.com/index.php?page=Special:login`

我如何下载除登录/注销页面以外的所有站点?

我正在尝试使用wget:

wget --load-cookies cookies.txt --convert-links --mirror -erobots=off --no-parent -p --adjust-extension "domain.com/index.php?page=main_page"

but that didn't download the pages with the page query parameter and it also didn't seem to download the CSS.

有什么方法可以下载不包括登录/注销页面和图像/ CSS的网站?