I can't access the sub folders in my website

When i try to access web site like this
(http://mywebsite.com/test/index.php)

I get error that page/folder dont exists File not found (404 error)

Do you have the correct nameservers assigned to point to your domain?

Are you 100% sure DNS is configured correctly?

Did you try to add a robots.txt file to allow/deny permission to look at your directories?

Here is an example (https://www.google.com/robots.txt)

if you’re getting errors like that there may be some rules in your htaccess file that make it look like the folders don’t exist can you post a screenshot of your public folder + the contents of your htaccess file please

Untitled

Options +FollowSymLinks -Indexes
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} /kuwait_jobs/
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d

RewriteRule ^kuwait_jobs/(.*)$ /kuwait_jobs/index.php?URI=$1 [QSA,L]

Do you need those rules in there? If not delete the file and try your site…?