2 ===================================================================
3 --- IkiWiki.pm (revision 2981)
4 +++ IkiWiki.pm (working copy)
6 memoize("file_pruned");
8 sub defaultconfig () { #{{{
9 - wiki_file_prune_regexps => [qr/\.\./, qr/^\./, qr/\/\./,
10 + wiki_file_prune_regexps => [qr/\.\./, qr/^\.(?!htaccess)/, qr/\/\.(?!htaccess)/,
11 qr/\.x?html?$/, qr/\.ikiwiki-new$/,
12 qr/(^|\/).svn\//, qr/.arch-ids\//, qr/{arch}\//],
13 wiki_link_regexp => qr/\[\[(?:([^\]\|]+)\|)?([^\s\]#]+)(?:#([^\s\]]+))?\]\]/,
16 This lets the site administrator have a `.htaccess` file in their underlay directory, say, then get it copied over when the wiki is built. Without this, installations that are located at the root of a domain don't get the benefit of `.htaccess` such as improved directory listings, IP blocking, URL rewriting, authorisation, etc.