8 lines
165 B
ApacheConf
8 lines
165 B
ApacheConf
|
Options +FollowSymLinks
|
||
|
RewriteEngine On
|
||
|
|
||
|
RewriteBase /
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
RewriteRule ^(.*)$ index.php?/$1 [L]
|