18 lines
324 B
ApacheConf
18 lines
324 B
ApacheConf
|
ServerSignature off
|
||
|
|
||
|
#Deny displaying directory tree
|
||
|
IndexIgnore */*
|
||
|
Options -Indexes
|
||
|
|
||
|
<IfModule mod_rewrite.c>
|
||
|
RewriteEngine On
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteRule ^(.*)$ index.php [NC,L,QSA]
|
||
|
|
||
|
</IfModule>
|
||
|
|
||
|
#(c)2020-2022 Waren Group
|
||
|
#Last updated: 24.4.2022
|