Update .htaccess

This commit is contained in:
2026-06-11 08:31:56 +00:00
parent 2fa1e90070
commit a7e4f70260
+3 -3
View File
@@ -1,12 +1,12 @@
Options -Indexes Options -Indexes
RewriteEngine On RewriteEngine On
RewriteBase /sinergi/ RewriteBase /
# Allow direct access to public assets # Allow direct access to public assets
RewriteCond %{REQUEST_URI} ^/sinergi/public/ [NC] RewriteCond %{REQUEST_URI} ^/public/ [NC]
RewriteRule ^ - [L] RewriteRule ^ - [L]
# Route everything else to index.php # Route everything else to index.php
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L] RewriteRule ^(.*)$ index.php [QSA,L]