NGINX + PHP5-FPM重定向无效(index.php / install /)

时间:2015-12-15 01:41:18

标签: php .htaccess nginx url-redirection nginx-location

我一直在抨击我的大脑 - 所以我已经启动并运行NGINX,它没有问题phpinfo(),但是我试图安装监控脚本试图调用网址:

  

http://example.com/index.php/install/

但是我最终找不到404,因为nginx似乎没有尝试将其作为index.php/install/运行,这似乎是脚本编码器的预期操作。

我的nginx conf段有问题(我几乎肯定这是问题):

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ $uri.php  =404;
                    autoindex on;
    }

任何人都可以帮助解决这个非常令人沮丧的问题吗?在此之前,它正在踢 500 SERVER ERROR ,现在我在尝试加载此安装脚本时已将其归结为 404 not found 。我非常精通Apache .htaccess文件,考虑到作者一定是有意的,可能应该走这条路 - 无论如何,请提前加油!

0 个答案:

没有答案