我目前将此设置(具有不同的根路径)用于我的 nginx 机器上的另一个站点,对于该站点,这适用于干净的 url。
location ^~ /learn {
root /var/www/blogs/mysite/learn;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.*\.php)(.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_pass 127.0.0.1:9000;
}
}
但是,当应用于同一台机器上的不同站点时,干净的 url 会导致找不到页面错误。为什么是这样?