Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

223
Views
You don't have permission to access this resource

i created project on Laravel and i setup my project in hosting. But i cant see pictures in my website. when i check the error i got this "Forbidden You don't have permission to access this resource.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request." how can i fix this?

here is my .htaccess code

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

   RewriteEngine On

  # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301]

 # Handle Front Controller...
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^ index.php [L]

 # Handle Authorization Header
   RewriteCond %{HTTP:Authorization} .
   RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

  </IfModule>

i use SSL sertification for my website. and i created middleware HttpsProtocol. here is my HttpsProtocol code

   public function handle($request, Closure $next)
{
    if (!$request->secure() && App::environment() === 'production') {
        return redirect()->secure($request->getRequestUri());
    }

    return $next($request);
}

and i use this middleware in my routes/web.php

here is my web.php route

Route::get('/posted-cvs', 'PostedCvsController@index')->middleware(HttpsProtocol::class);

i dont know how to fix this problem. website is works but when i select posted-cvs category i cant see there users picture

over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!