Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

用户访问A链接
ngnix rewrite: A=>B
apache rewrite: B=>C
php获取的 REQUEST_URI是?

测试结果是B,为什么?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
940 views
Welcome To Ask or Share your Answers For Others

1 Answer

因为REQUEST_URI环境变量始终保存的是原始的uri,如果想获取重写后的uri,可以使用php打印环境变量查看保存到哪个环境变量了

<?php
print_r($_ENV);
?>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...