mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
8 lines
192 B
ApacheConf
Executable File
8 lines
192 B
ApacheConf
Executable File
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteRule ^index\.php$ - [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule . index.php [L]
|
|
</IfModule>
|