أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
Create a .htaccess file your Laravel root directory if it does not exists already. (Normally it is under your public_html folder)
Edit the .htaccess file so that it contains the following code:
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/$1 [L] </IfModule>Now you should be able to access the website without the "/public/index.php/" part.
Thanks