mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 11:10:57 +01:00
14 lines
266 B
ApacheConf
14 lines
266 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options -MultiViews
|
|
|
|
RewriteEngine On
|
|
#RewriteBase /path/to/gitlist/
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ index.php [L,NC]
|
|
</IfModule>
|
|
<Files config.ini>
|
|
order allow,deny
|
|
deny from all
|
|
</Files>
|