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