Unless someone objects in the next day or so, I am going to run the following script on each directory of the docs and commit the resulting .html.html files:
#! /bin/sh for file in `ls *.en | sed s/.en//g` do echo "<!--#include virtual=\"$file.en\" -->" > $file.html; done If other sites (eg www.apache.jp) want a different "fallback" file, then they can change the script accordingly and run it on their version. Once again, for those that haven't been watching, this is to help the thousands of people who are every day accessing httpd.apache.org/docs/ without english in their Accept-Language header. I believe that just serving the english page is better than the ugly and confusing error message presently being served. Comments welcome. Joshua.