我想在我的 nginx 服务器中使用重写功能。
当我尝试“ http://www.example.com/1234 ”时,我想重写“ http://www.example.com/v.php?id=1234 ”并想要获得“ http://www .example.com/1234 ”在浏览器中。
这是 nginx.conf 文件
...
location ~ /[0-9]+ {
rewrite "/([0-9]+)" http://www.example.com/v.php?id=$1 break;
}
...
当我尝试“ http://www.example.com/1234 ”
我想要 ...
url bar in browser : http://www.example.com/1234
real url : http://www.example.com/v.php?id=1234
但我有麻烦了...
url bar in browser : http://www.example.com/v.php?id=1234
real url : http://www.example.com/v.php?id=1234