我搜索过Stackoverflow并且找不到合适的解决方案。
我在文件名中使用uppper和down case的文件,例如:
someFileName.php
然后,如果我浏览https://example.com/somefilename.php,我希望提供该文件。 在我的nginx配置中,我有以下内容:
location ~* \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
}
根据我的理解,"〜*" part应匹配此不区分大小写,但我仍然得到404,因为它试图找到somefilename.php而不是。
有人能指出我在正确的方向吗?