Apache重写 - 在PHP中获取原始URL
我用nginx或Apache重写了这个地址:
http://domain.com/hello
到像这样的脚本
http://domain.com/test.php&ref=hell
如何在PHP中访问这个重写的URL?因为,如果我使用当然,我会得到:$_SERVER['REQUEST_URI']
/test.php&ref=hell
但我只想要:
/hello
这可能吗?感恩节寻求帮助。
Upd nginx cnf
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
server
{
listen 80;
server_name domain.test;
location /
{
rewrite ^/(main|best|air)$ /core/feeds.php?act=$1 last;
proxy_pass http://127.0.0.1:8080;
}
}