summaryrefslogtreecommitdiff
path: root/contrib/_htaccess
blob: 532cbf294dd78a8a45aff650ef0cedca4b91416f (plain)
1
2
3
4
5
6
7
8
## enable mod_rewrie
RewriteEngine on
## deny access to *.rhtml and *.cache
RewriteRule \.(rhtml|cache)$ - [R=404,L]
## rewrite only if requested file is not found
RewriteCond %{SCRIPT_FILENAME} !-f
## handle request to *.html by index.cgi
RewriteRule ^.*\.html$ index.cgi