nginx 限制或重定向请求以通过根目录中的 index.php

nginx Restrict or Redirect requests to go through index.php in the root

我的项目要求是从 Slim 框架 (index.php) 启动一个 angular(v6)/ionic(v4) 应用程序(index.html)。 根文件夹结构如下图所示:

'www' 是 Slim index.php 所在的根目录。在 'www' 中是添加了 angular 构建文件(index.php)的应用程序文件夹。 要求是所有请求都应通过根文件夹中的 Slim index.php,并且根据某些会话逻辑,我们必须路由或启动 angular 应用程序 (index.html)。

现在,“https://domain/”经过 index.php。但, 'https://domain/app/' 直接启动 angular 应用程序 (index.html)。

我如何配置 nginx 以便 Slim 在根目录中处理所有请求 index.php?

server {
    server_name <domain>;

    root /var/www/<some name>/public/www/;
    index index.php index.html index.htm;

    access_log  /var/log/nginx/<some name>.log;
    error_log   /var/log/nginx/<some name>.log;

    sendfile off;

    location / {
        index index.php index.html index.htm;
        try_files $uri $uri/ index.php /index.php?$args;
    }
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_read_timeout 36000;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

谢谢

您可以像这样限制对 app 目录的访问

location /app {
    deny all;
    return 404; #show not found instead of 403
}

或者您可以通过向 https://example.com/

发送重定向来覆盖 403 处理
location /app{
     deny all;
     error_page 403 https:/domain.com/;  #redirect to your main directory
 }