mirror of
https://github.com/moonshadowrev/PersonalAccounter.git
synced 2025-12-21 08:19:37 -06:00
15 lines
447 B
ApacheConf
15 lines
447 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# Send requests to the public directory
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_URI} !^/public/
|
|
RewriteRule ^(.*)$ public/$1 [L,QSA]
|
|
|
|
# Handle requests inside the public directory
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^public/(.*)$ public/index.php [L,QSA]
|
|
</IfModule> |