I've got GNU Wget 1.10.2 for windows and linux and the -k option behaves differently on those two.
-k, --convert-links make links in downloaded HTML point to local files.
On windows it produces:
www.example.com/index.html www.example.com/index.html@page=about www.example.com/index.html@page=contact www.example.com/index.html@page=sitemap
and on linux it produces:
www.example.com/index.html www.example.com/index.html?page=about www.example.com/index.html?page=contact www.example.com/index.html?page=sitemap
This is problematic in linux because when I serve the mirror through Apache it will not distinguish between the 4 generated pages since the part after the questionmark (?) character is used as the query string to the file.
Any ideas on how I can control this?
thanks