이 글에서는 PHP 웹사이트의 기본 접근 파일을 수정하기 위한 nginx 설정을 주로 소개합니다. 필요하신 분들은 참고하시면 됩니다.
lnmp 설정 후에는 index.php에 직접 접근하여 다른 기본 접근 설정을 할 필요가 없을 때도 있습니다. 이때 html은 설정하려는 파일에 접근하기 위해 nginx를 설정해야 합니다. 다음은 제가 설정한 디렉토리인 php-fpm 사이트에 대한 간단한 nginx입니다. /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; } }
관련 권장 사항:
nginxphp
nginx단계에 대한 자세한 설명 실시간 출력을 달성하려면
위 내용은 PHP 웹사이트에서 기본 액세스 파일의 nginx 구성을 수정하는 방법 - 예제 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!