Nginx랑 laravel route 404 not found 뜨는 경우
Published in
1 min readJun 11, 2019
Nginx랑 laravel을 같이 올린 뒤 route 적용 시, 404 not found 에러가 발생합니다.
아래 3줄을 location ~ \.php 위에 넣음으로 해결되었습니다.
location / {
try_files $uri $uri/ /index.php;
}
참고
Nginx랑 laravel을 같이 올린 뒤 route 적용 시, 404 not found 에러가 발생합니다.
아래 3줄을 location ~ \.php 위에 넣음으로 해결되었습니다.
location / {
try_files $uri $uri/ /index.php;
}
참고