A
A
adam_carraway2019-02-27 13:23:06
Apache HTTP Server
adam_carraway, 2019-02-27 13:23:06

Error 403 Forbidden laravel, what is the reason?

Installed laravel, when going to the address https:// site.ru gives such an error, but if you go to the address https:// site.ru/public/index.php then the site is displayed. The content of the .htaccess file

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{REQUEST_URI} !^public
    RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

What is this error related to?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Кирилл Арутюнов, 2019-02-27
@adam_carraway

Очевидно, что у вас неправильно настроены пути на веб-сервере: домен стучится в папку, которая не является документ-рутом и вы видите 403. Настройте веб-сервер так, чтобы он смотрел в папку public.
Посмотрите по ссылке настройки: https://stackoverflow.com/questions/18272557/larav...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question