欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx conf的$request_filename变量到底指的是什么?

程序员文章站 2024-01-12 11:37:40
...
比如说
example.com/index.php
example.com/index.php?a=3
example.com/index.php/a/b/c

example.com/test.php
example.com/test.php?a=3
example.com/test.php/a/b/c

这些url的request_filename到底是多少?

回复内容:

比如说
example.com/index.php
example.com/index.php?a=3
example.com/index.php/a/b/c

example.com/test.php
example.com/test.php?a=3
example.com/test.php/a/b/c

这些url的request_filename到底是多少?

$request_filename 就是请求资源的路径啦~~
例如你这里,应该对应的是 root下的 index.php 和 test.php
当然还有看前面有没有伪静态规则什么的。。。