根目录中的 nginx angularjs,子目录中的 codeigniter

根目录中的 nginx angularjs,子目录中的 codeigniter

我在根文件夹中有一个带有 AngularJS 的主网站,这个网站还将 URL 重写为 index.html,并且正常运行。

然后在子目录管理中,我有一个代码点火器安装。然而,当我进入那里时,我被重定向到角度网站。

codeigniter 以前在 apache 服务器上工作,我没有对 codeigniter 使用 rewrite。

我的配置是:

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/html;

    # Add index.php to the list if you are using PHP
    index index.php index.html index.htm index.nginx-debian.html;

    server_name example.com;

    location /manage {
            try_files $uri $uri/ /index.php =404;
    }

    location /phpmyadmin {
            try_files $uri $uri/ =404;
    }

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            #try_files $uri $uri/ =404;
            try_files $uri /index.html?$query_string;
    }

    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }

    location ~ /\.ht {
            deny all;
    }
}

我需要对管理文件夹进行额外配置吗?我已将 codeigniter 中的 base_url 设置为http://example.com/manage/

相关内容