I cleared a bunch of pages using wget -m -k -E. The resulting files have names in the form foo.php? Bar.html. Apache all guesses after? this is a query string, is there any way to tell her to ignore? as a query string delimiter (and see foo.php? bar.html as the requested file, not foo.php)?
To save you a trip to wget manpage:
-m: mirror recursively
-E: foo.php? Bar becomes foo.php? Bar.html
-k: convert links on pages (foo.php? Bar now refers to foo.php? Bar.html inside all pages so that they display correctly)
source
share