16 lines
361 B
ApacheConf
16 lines
361 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
Options -MultiViews -Indexes
|
|
RewriteEngine On
|
|
|
|
# If the file or folder exists, serve it
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
# Otherwise rewrite to index.php
|
|
RewriteRule ^ index.php [L]
|
|
</IfModule>
|
|
|
|
<FilesMatch "\.php$">
|
|
SetHandler application/x-lsphp81
|
|
</FilesMatch>
|