From: Alexander Barton Date: Mon, 12 Feb 2024 17:15:31 +0000 (+0100) Subject: .htaccess: Add "index.html" to DirectoryIndex X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd612f84951c52c54fa7455b16802d11f2157d7d;p=ngircd-web.git .htaccess: Add "index.html" to DirectoryIndex The Doxygen-generated documentation uses index.html for their main page, for example. --- diff --git a/.htaccess b/.htaccess index 5d122db..223f270 100644 --- a/.htaccess +++ b/.htaccess @@ -1,12 +1,22 @@ +# +# Apache .htaccess configuration file for the ngIRCd Website +# + Options +MultiViews AddLanguage en .en AddLanguage de .de AddType application/x-httpd-php .php -DirectoryIndex index.php +DirectoryIndex index.php index.html LanguagePriority en de + +# Issue Tracker + Redirect /bugzilla/index.cgi https://github.com/ngircd/ngircd/issues Redirect /bugzilla/enter_bug.cgi https://github.com/ngircd/ngircd/issues/new Redirect /bugzilla/query.cgi https://github.com/ngircd/ngircd/issues + +# Documentation + Redirect /doc/AUTHORS https://github.com/ngircd/ngircd/blob/master/AUTHORS Redirect /doc/COPYING https://github.com/ngircd/ngircd/blob/master/COPYING Redirect /doc/ChangeLog https://github.com/ngircd/ngircd/blob/master/ChangeLog