感谢您阅读我的问题。
我想在我的网站上添加此功能:
当访问者在地址栏中输入时:
zicher.mx/beer
自动重定向到:此网址:
https://zicher.mx/index.php?buscar=beer
它可以吗?
请向我道歉并提前致谢。
我不知道我需要在google或stackoverflow中搜索才能找到此重定向功能。
答案 0 :(得分:0)
这不应该是一个永久的解决方案,但你可以发送这样的东西,让客户端重定向到一个新的页面(顺便说一下,它未经测试):
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="1;url=https://zicher.mx/index.php?buscar=<?php echo $_SERVER[REQUEST_URI]; ?>" />
<script>
var x = document.createElement("p");
x.innerHTML = 'Click <a href="https://zicher.mx/index.php?buscar=<?php echo $_SERVER[REQUEST_URI]; ?>">here</a> to search for ' + location.href.replace("zicher.mx/", "") + ".";
document.body.appendChild(x);
</script>
</head>
<body>
</body>
</html>