可以用php更改URL吗?
例如
原有网址: http:/example.compath123
改为 http:/example.comage.php?url=path123。
当有人访问原始网址时,我需要这个。
把这段代码放在path123.php或index.php中,如果你要重写请求的话(例如:使用apache mod_rewrite)。
<?php
$url = str_replace('?', '&', $_SERVER['REQUEST_URI']);
header('Location: http://example.com/page.php?url='.$url);
?>