I'm trying to convert hand written html site to ikiwiki and maintain url compatibility. html plugin with indexpages=1 converts all dir_name/index.html correctly to dir_name urls with wiki/css based content, but somedir/somefile.html files are only accessible as somedir/somefile/. Non .html files seem to accessible with their full paths, for example somedir/pic.jpg from hand written html can be accessed by same path under ikiwiki.
How to make somedir/somefile.html accessible as somedir/somefile.html under ikiwiki?
Thanks,
-Mikko
> Hello! The options you need to investigate are `--usedirs` and
> `--no-usedirs`. The default `--usedirs` takes any source page foo
> (regardless of its format, be it markdown or html) and converts it into a
> destination page foo/index.html (URL foo/). By comparison, `--no-usedirs`
> maps the source file onto a destination file directly: src/foo.html becomes
> dest/foo.html, src/bar.mdwn becomes dest/bar.html, etc.
>
> It sounds like you want `--no-usedirs`, or the corresponding `usedirs => 0,`
> option in your setup file. See [[usage]] for more information. -- [[Jon]]
Thanks, usedirs seems to be just the thing I need.
-Mikko