From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; es-ES; rv:1.2.1) Gecko/20030225 Description of problem: Hi people: I'm testing the httpd rawhide release, since httpd-2.0.47 the httpd manual has changed a bit so the httpd.conf file needs to be modified in a way the manual works, here a patch that fix this to the httpd.conf of the source of srpm... --- httpd.conf-orig 2003-05-18 14:37:22.000000000 -0400 +++ httpd.conf 2003-07-28 11:11:14.000000000 -0400 @@ -562,13 +562,25 @@ # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation. # -Alias /manual "/var/www/manual" +AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$ "/var/www/manual$1" <Directory "/var/www/manual"> - Options Indexes FollowSymLinks MultiViews + Options Indexes AllowOverride None Order allow,deny Allow from all + + <Files *.html> + SetHandler type-map + </Files> + + SetEnvIf Request_URI ^/manual/de/ prefer-language=de + SetEnvIf Request_URI ^/manual/en/ prefer-language=en + SetEnvIf Request_URI ^/manual/fr/ prefer-language=fr + SetEnvIf Request_URI ^/manual/ja/ prefer-language=ja + SetEnvIf Request_URI ^/manual/ko/ prefer-language=ko + SetEnvIf Request_URI ^/manual/ru/ prefer-language=ru + RedirectMatch 301 ^/manual(?:/(de|en|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2 </Directory> <IfModule mod_dav_fs.c> Version-Release number of selected component (if applicable): httpd-2.0.47-3 How reproducible: Always Steps to Reproduce: 1.Install the httpd-manual 2. 3. Actual Results: The manual don't display correctly the html pages Additional info:
Is this in the httpd upstream config file? If not, please push it there first?
Yes that fragment is from the upstream config IIRC.
Thanks for the report and patch, applied in 2.0.47-6.