10 lines
170 B
ApacheConf
10 lines
170 B
ApacheConf
|
DirectoryIndex index.php
|
||
|
|
||
|
RewriteEngine on
|
||
|
|
||
|
RewriteBase /
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
|
||
|
RewriteRule ^(.*)$ index.php [QSA]
|