simplegroupware/Simple-Groupware/master/ext/.htaccess - Htaccess File

simplegroupware/Simple-Groupware/master/ext/.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD}  ^GET
RewriteCond %{REQUEST_URI}  /ext/(.*)/
RewriteCond %{REQUEST_FILENAME}%{PATH_INFO}  ^(.*)/(ext/.*)$
RewriteCond %1/../custom/%2  -f
RewriteCond %{REQUEST_URI}  ^(.*)/ext/
RewriteRule .* %1/../custom/ext/$0  [L]

RewriteCond %{REQUEST_METHOD}  ^GET
RewriteCond %{REQUEST_URI}  /ext/(.*)/
RewriteCond %{REQUEST_FILENAME}%{PATH_INFO}  ^(.*)/(ext/.*)$
RewriteCond %1/../ext/%2  -f
RewriteCond %{REQUEST_URI}  ^(.*)/ext/
RewriteRule .* %1/../ext/ext/$0  [L]
</IfModule>

<ifModule mod_headers.c>
Header set Cache-Control "max-age=86400"
</ifModule>

On Github License

Files

Download PDF of Htaccess file
GET, PATH_INFO, REQUEST_FILENAME, REQUEST_METHOD, REQUEST_URI

Comments

Apache