mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/ARCHIVED-IZYIM.git
synced 2026-08-19 04:14:01 +00:00
15 lines
353 B
ApacheConf
Executable File
15 lines
353 B
ApacheConf
Executable File
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [L]
|
|
RewriteRule ^(.*)/$ $1 [R=301,L]
|
|
RewriteCond %{HTTPS} off
|
|
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
|
|
|
|
<IfModule mod_deflate.c>
|
|
<FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|html|php|txt|xml)$">
|
|
SetOutputFilter DEFLATE
|
|
</FilesMatch>
|
|
</IfModule>
|
|
|