10 lines
190 B
ApacheConf
10 lines
190 B
ApacheConf
Options -MultiViews -Indexes +FollowSymLinks
|
|
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule ^(.*)$ index.php/$1 [NC,L]
|