RewriteEngine on
# Options -Indexes

RewriteBase /sukuk

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [PT,L] 


# Prevent user access to the CI system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L] 

# Prevent user access to the CI application folder
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#php_value upload_max_filesize 200M
#php_value post_max_size 2000M
#php_value memory_limit 1024M
#php_value max_execution_time 180
#php_value max_input_time 180

# Commented by SiteGround automated systems #
AddHandler application/x-httpd-php71 .php .php5 .php4 .php3
