Nginx 位置配置(子文件夹)
假设我有一条这样的路径:
/var/www/myside/
该路径包含两个文件夹...让我们说和/static
/manage
我想配置nginx以访问:
/static
文件夹(例如。http://example.org/)此文件夹包含一些.html文件。/
/manage
文件夹(例如。http://example.org/manage)在这种情况下,此文件夹包含Slim的PHP框架代码 - 这意味着索引.php文件位于子文件夹中(例如/var/www/mysite/manage/public/index.php)/manage
public
我尝试过很多组合,例如
server {
listen 80;
server_name example.org;
error_log /usr/local/etc/nginx/logs/mysite/error.log;
access_log /usr/local/etc/nginx/logs/mysite/access.log;
root /var/www/mysite;
location /manage {
root $uri/manage/public;
try_files $uri /index.php$is_args$args;
}
location / {
root $uri/static/;
index index.html;
}
location ~ \.php {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
}
}
无论如何,工作正常都不会。我做错了什么吗?有谁知道我应该改变什么?/
manage
马修。