获取URL的地址

时间:2011-08-28 22:12:50

标签: php variables mod-rewrite

我正在使用mod重写来重写一些动态的PHP链接。

例如file.php?id=1等于/file/1/

我是否可以使用任何特殊的PHP函数或类似函数来获取/file/1/而不是file.php?id=1

$_SERVER这样的东西会读取mod重写而不是PHP链接。

1 个答案:

答案 0 :(得分:2)

<?php
echo $_SERVER['REQUEST_URI'];

http://sandbox.phpcode.eu/g/c492b