lnmp를 설정한 후 index.php에 직접 액세스할 필요가 없는 경우도 있습니다. 이때 index.html과 같은 다른 기본 액세스 파일을 구성해야 합니다. 이때 설정하려는 파일에 액세스하려면 nginx를 구성해야 합니다.
다음과 같이 코드로 바로 이동합니다. 저는 간단한 nginx를 php-fpm 사이트로 구성했습니다. 사이트는 기본적으로 /ecmoban/www/index.html
server { listen 80; location / { root /ecmoban/www; index index.html index.php index.htm; } error_page 404 /404.html; location = /404.html { root /usr/share/nginx/html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { root /ecmoban/www; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.html; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
디렉토리에 액세스하도록 설정되어 있습니다. 위는 PHP 웹사이트에 대한 편집자의 소개입니다. nginx의 기본 액세스 파일 구성을 수정하는 데 도움이 되기를 바랍니다. 질문이 있는 경우 메시지를 남겨주시면 편집자가 제 시간에 답변해 드릴 것입니다.