我将 Nginx 用于一个简单的演示网站,我只是像这样配置 Nginx:
server {
listen 80;
server_name www.abc.com;
location / {
index index.html;
root /home/www.abc.com/;
}
}
在我的www.abc.com
文件夹中,我有名为 的子文件夹Sub
,里面有index.html
文件。所以当我尝试访问时www.abc.com/Sub/index.html
,它工作正常。如果我访问www.abc.com/sub/index.html
,它会返回404
。
如何将 Nginx 配置为在 URL 中不区分大小写?