除带有 php 扩展名的文件和文件夹外,所有不存在的文件和文件夹均重定向

除带有 php 扩展名的文件和文件夹外,所有不存在的文件和文件夹均重定向

我对我的应用程序使用以下指令:

location / {
    root  "C:/Program Files (x86)/EasyPHP-Devserver-17/eds-www";
    index  index.php index.html index.htm;
    autoindex on;
    try_files $uri $uri/ /index.php?param=$uri;
}

它将使用 url 的 $_GET 参数将所有不存在的文件和文件夹重定向到 index.php,但出现以下错误的 php 文件除外:

未指定输入文件。

有没有解决方法可以使它与 .php 扩展一起工作?

相关内容