Comment #⁨2⁩

Thanks for the suggestion @Subarist! I saw your previous post, but this relates to a setup with Apache, no?

  1. In reply to Manuel Manuel

    Sorry for my limited English expression. I am not very familiar with Apache or Nginx, and I just threw your question at ChatGPT. 😅
    Then it told me that, first, you need to check the folder permissions:

    Please make sure you have set the correct folder permissions on the server. You can use the following commands to change the folder permissions:

    sudo chown -R www-data:www-data /home/forge/waterhole.kostka.studio/storage
    sudo chown -R www-data:www-data /home/forge/waterhole.kostka.studio/public
    sudo chmod -R 755 /home/forge/waterhole.kostka.studio/storage
    sudo chmod -R 755 /home/forge/waterhole.kostka.studio/public
  2. In reply to Manuel Manuel

    I was able to solve the issue by creating another .htaccess in the root folder to get the public folder

    .htaccess must contain this

    RewriteEngine On
    RewriteCond %{REQUEST_URI} !^/public/
    RewriteRule ^(.*)$ /public/$1 [L]

    If it work drop a like 🤞