aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2011-04-03 18:05:47 +0200
committerintrigeri <intrigeri@boum.org>2011-04-03 18:07:03 +0200
commit15181ecc9be8fc8cb56cd807abce037edcb1fa15 (patch)
treefa9cec5bf4c6a377b4bf74c92ead99ee6a85c4c9 /doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn
parent17018241b64966482b7b08cfdf09a056707aaa62 (diff)
downloadikiwiki-15181ecc9be8fc8cb56cd807abce037edcb1fa15.tar
ikiwiki-15181ecc9be8fc8cb56cd807abce037edcb1fa15.tar.gz
Reply... cannot think of a great solution.
Diffstat (limited to 'doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn')
-rw-r--r--doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn b/doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn
index e8969abd7..e8832c0b0 100644
--- a/doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn
+++ b/doc/bugs/po:__apache_config_serves_index_directory_for_index.mdwn
@@ -11,3 +11,23 @@ the "index" directory exists, and so apache happily displays that
directory, rather than the site's index page!
--[[Joey]]
+
+> Ack, we do have a problem. Seems like ikiwiki's use of `index/` as
+> the directory for homepage's sub-pages and attachments makes it
+> conflict deeply with Apache's `MultiViews`: as the [MultiViews
+> documentation](http://httpd.apache.org/docs/2.2/mod/mod_negotiation.html#multiviews)
+> says, `index.*` are considered as possible matches only if the
+> `index/` directory *does not exist*. Neither type maps nor
+> `mod_mime` config parameters seem to allow overriding this behavior.
+> Worse even, I guess any page called `index` would have the same
+> issues, not only the wiki homepage.
+
+> I can think of two workarounds, both kinda stink:
+>
+> 1. Have the homepage's `targetpage` be something else than
+> `index.html`.
+> 2. Have the directory for the homepage's sub-pages and attachments
+> be something else than `index`.
+>
+> I doubt either of those can be implemented without ugly special
+> casing. Any other idea? --[[intrigeri]]