Ekaropolus aef6c0d440
All checks were successful
continuous-integration/drone/push Build is passing
modify entry access
2025-07-19 19:48:39 -06:00

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>