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