## This is an example .htaccess-file
 
## To get everything automatically parsed, the following line is needed
 
#set link auto on
 
 
##From now on, every RewriteRule gets recognised.
 
RewriteEngine on
 
RewriteRule (.+?)\.html                    ?page=$1
 
RewriteRule (.+?)\.html/([\w]+)            ?page=$1&mode=$2
 
RewriteRule ^special\:(.+?)\.html/value\:(.+?)$    ?$1&value=$2
 
 
##You can also change the text before the real link by the following line
 
#set link start http://example.org
 
 |