ifomeeDelivery For this, mod_rewrite should be enabled in your hosting cpanel
Go to .env file in your foodomaa installation root and change https://yourdomain.com/public to https://yourdomain.com/
Go to .htaccess file in the same location and add this code on 1st line before everything else, if not already there
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
If you're using cPanel, make sure to select 'Show Hidden Files and Directories' from File Manager Settings on top right corner of your screen!