如何在php中更改URL路径

问题描述 投票:0回答:1

可以用php更改URL吗?

例如

原有网址: http:/example.compath123

改为 http:/example.comage.php?url=path123。

当有人访问原始网址时,我需要这个。

javascript php .htaccess url
1个回答
0
投票

把这段代码放在path123.php或index.php中,如果你要重写请求的话(例如:使用apache mod_rewrite)。

<?php

$url = str_replace('?', '&', $_SERVER['REQUEST_URI']);
header('Location: http://example.com/page.php?url='.$url);

?>
© www.soinside.com 2019 - 2024. All rights reserved.