lnmp を設定した後、index.php に直接アクセスする必要がない場合があります。このとき、設定したいファイルにアクセスできるように 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 Web サイトの紹介です。 nginx のデフォルトのアクセス ファイルを変更するには、これが皆さんのお役に立てば幸いです。ご質問がございましたら、メッセージを残してください。編集者がすぐに返信します。