Initial commit

This commit is contained in:
Kwesi Banson Jnr
2026-04-08 05:53:02 +00:00
commit 592a161ee6
63 changed files with 4105 additions and 0 deletions

14
public/.htaccess Normal file
View File

@@ -0,0 +1,14 @@
RewriteEngine On
#RewriteBase /mse_api/public
# 1. Prevent directory browsing
Options -Indexes
# 2. If the request is NOT a real directory...
RewriteCond %{REQUEST_FILENAME} !-d
# 3. ...and is NOT a real file...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
# 4. ...send the request to index.php
RewriteRule ^ index.php [L]