xref: /dokuwiki/.htaccess.dist (revision 0cecf9d507451346a32ddf45a85b425784fbb0f8)
1## Enable this to restrict editing to logged in users only
2
3## make sure nobody gets the htaccess files
4<Files ~ "^\.ht">
5    Order allow,deny
6    Deny from all
7    Satisfy All
8</Files>
9
10## Comment these rules in if you want to have nice URLs
11#RewriteEngine on
12#RewriteRule ^$                        doku.php  [L]
13#RewriteCond %{REQUEST_FILENAME}       !-f
14#RewriteCond %{REQUEST_FILENAME}       !-d
15#RewriteRule (.*)                      doku.php?id=$1  [QSA,L]
16#RewriteRule ^index.php$               doku.php
17