<IfModule mod_rewrite.c>
    
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} -d [OR]
    RewriteCond %{REQUEST_FILENAME} -f 
    RewriteRule ^ ^$1 [N]
    
    RewriteCond %{REQUEST_URI} (.\w+$) [NC]
    RewriteRule ^(.*)$ public/$1
    # Send Requests To Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ server.php
</IfModule>
<FilesMatch ".(?:html|php)$">
#SetHandler application/x-httpd-alt-php82
</FilesMatch>  