15 lines
303 B
ApacheConf
Executable File
15 lines
303 B
ApacheConf
Executable File
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
<IfModule mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php/$1 [L]
|
|
</IfModule>
|
|
|
|
<IfModule !mod_php5.c>
|
|
RewriteRule ^(.*)$ index.php?/$1 [L]
|
|
</IfModule>
|
|
|
|
</IfModule> |