英文:
How to Redirect one Page url to another Page url
问题
我想将一个页面重定向到另一个页面,类似于以下内容..
https://www.example.com/foobar.php?emulatemode=2
到 https://www.example.com/foobar.php
我已经尝试了以下代码在 .htaccess 中,但没有成功。
<?php
header("Location: https://www.example.com/foobar.php");
exit;
?>
我尝试使用 301 重定向,但没有成功。
有人可以帮忙吗?
英文:
I want to redirect one page to another page which is something like below..
https://www.example.com/foobar.php?emulatemode=2
into https://www.example.com/foobar.php
I have tried the below code on .htaccess but no luck.
<?php
header("Location: https://www.example.com/foobar.php");
exit;
?>
i am trying using 301 but not redirected.
any one can help on this
答案1
得分: 1
.htaccess
文件是用于Apache HTTPD的覆盖配置文件。它们的内容应该是HTTP服务器的配置指令。
你的代码是PHP源代码。它需要放在一个.php
文件中。
因为你的两个URL共享相同的路径,你需要将这两个语句包装在一个if
条件中,该条件测试$_GET['emulatemode']
的值。
英文:
.htaccess
files are override configuration files for Apache HTTPD. Their contents should be configuration directives for the HTTP server.
The code you have is PHP source code. It needs to go in a .php
file.
Since your two URLs share the same path, you need to wrap the two statements if an if
condition that tests the value of $_GET['emulatemode']
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论