mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:57 +01:00
14 lines
307 B
ApacheConf
Executable File
14 lines
307 B
ApacheConf
Executable File
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
|
|
# You may need RewriteBase on some servers
|
|
#RewriteBase /min
|
|
|
|
# rewrite URLs like "/min/f=..." to "/min/?f=..."
|
|
RewriteRule ^([bfg]=.*) index.php?$1 [L,NE]
|
|
</IfModule>
|
|
<IfModule mod_env.c>
|
|
# In case AddOutputFilterByType has been added
|
|
SetEnv no-gzip
|
|
</IfModule>
|