Web ルート (/var/www) に複数のサイト (site1、site2 など) があり、Nginx を以下のように構成しました。
## PHP-FPM Servers ##
upstream localhost-php-fpm {
server unix:/var/run/php/php7.3-fpm.sock;
}
server {
server_name localhost;
listen 80;
root /var/www;
index index.php index.html index.htm;
location /site1/web {
try_files $uri $uri/ /site1/web/index.php?$args;
}
location /site2/web {
try_files $uri $uri/ /site2/web/index.php?$args;
}
# pass to php-fpm
location ~ \.php(?:$|/) {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass localhost-php-fpm;
fastcgi_index index.php;
fastcgi_intercept_errors on;
include fastcgi_params;
fastcgi_connect_timeout 600;
fastcgi_send_timeout 600;
fastcgi_read_timeout 15000;
}
}
たとえば、サイトのルートを要求するとhttp://localhost/site1/web
、index.php をダウンロードするためのダウンロード ウィンドウが開きます。ただし、何らかのパスを要求すると、http://localhost/site1/web/dashboard
すべて正常に動作します。
答え1
try_files
最後のブロックにディレクティブを追加する必要がありますlocation
。