まず、同様の質問を検索しようとしましたが、これらの質問に対する解決策は特定のコード行であり、ニーズに合わせてカスタマイズできませんでした。
Codeigniter をインストールしており、Apache から nginx に移行しようとしています。ただし、Apache では、.htaccess は非常に単純でした。ホワイトリストを取得し、他のすべてを .htaccess に書き換えますindex.php
。
RewriteEngine on
RewriteCond $1 !^(index\.php|css|images|core|uploads|js|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ /index.php/$1 [L]
ただし、nginx では、if および try_files ディレクティブを試したり、場所をいじったりしましたが、役に立ちませんでした。私はまだ nginx がサーバー構成を読み取る方法に慣れていません。オンラインのチュートリアルは、理解するのが少しわかりにくかったです。
さらに、index.php は Web ルートではなく、サブディレクトリにありserver
ます。
このため、/server で始まる URI リクエストでさえ、ディレクトリに送信されないようにする必要があります。index.php
これまでのところ、これは私の nginx 仮想ホスト構成です。
server {
listen 80;
server_name example.com;
root /home/example/public_html;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
index index.htm index.html index.php;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/example.sock;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~* ^.*(/|\..*) {
try_files $uri $uri/ /server/index.php;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
リクエストを にリダイレクトするのに役立ちますindex.php
が、ホワイトリストはありません。各部分の機能を簡単に説明した実用的な例を誰かが生成できれば幸いです。