Hi,
Yup, you can customize the routing rules to get the behaviour you
want. You probably have a rule
route '*' do ; item.identifier + 'index.html' ; end
in your Rules file. An item identifier is something like "/path/", so
this rule will result in a file being written to "/path/index.html".
If you want to output to "/path.html" instead, you can use this:
route '*' do ; item.identifier.chop + '.html' ; end
Hope this helps,
Denis
--
Denis Defreyne
denis.d...@stoneship.org