4
영구 링크를 변경하면 nginx에서 404 오류가 발생합니다.
편집하다 nginx가 사용하지 않기 때문에 .htaccess를 편집하려고하는 잘못된 트리를 짖는 것으로 나타났습니다. 분명히해야 할 일은 내 .conf 파일을 편집하는 것입니다. 이 내용을 읽기 전에 my_app.conf는 다음과 같습니다. upstream backend { server unix:/u/apps/my_app/tmp/php.sock; } server { listen 80 default; root /u/apps/my_app/www; index index.php; access_log /u/apps/my_app/logs/access.log; error_log /u/apps/my_app/logs/error.log; location / { try_files …