forked from kirilkirkov/Ecommerce-CodeIgniter-Bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.htaccess
More file actions
22 lines (20 loc) · 858 Bytes
/
.htaccess
File metadata and controls
22 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#==============================================================
# DISABLE INDEX FOLDER
#==============================================================
Options -Indexes
#--------------------------------------------------------------#
#==============================================================
# CODEIGNITER HTACCESS
#==============================================================
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/ [PT,L]
#--------------------------------------------------------------#
#==============================================================
# CODEIGNITER ENVIRONMENT
#==============================================================
<IfModule mod_env.c>
SetEnv CI_ENV production
</IfModule>
#--------------------------------------------------------------#