1
2
3
4
5
6
7
8
9
10
11
12
| <IfModule mod_rewrite.c>
| RewriteEngine on
| #Authorization Headers
| RewriteCond %{HTTP:Authorization} ^(.*)
| RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
| SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
|
| RewriteCond %{REQUEST_FILENAME} !-d
| RewriteCond %{REQUEST_FILENAME} !-f
| RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
|
| </IfModule>
|
|