2018-10-06 14:50:08 +00:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
|
|
|
RewriteBase /
|
|
|
|
RewriteRule ^index\.php$ - [L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule . /ihc/index.php [L]
|
|
|
|
</IfModule>
|
2018-09-25 00:16:24 +00:00
|
|
|
|
|
|
|
## Desabilitar cache de Apache
|
|
|
|
<FilesMatch "\.(html|htm|js|css)$">
|
|
|
|
FileETag None
|
|
|
|
<IfModule mod_headers.c>
|
|
|
|
Header unset ETag
|
|
|
|
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
|
|
|
|
Header set Pragma "no-cache"
|
|
|
|
Header set Expires "Wed, 12 Jan 1980 05:00:00 GMT"
|
|
|
|
</IfModule>
|
2018-10-06 14:50:08 +00:00
|
|
|
</FilesMatch>
|