如何将一个页面的URL重定向到另一个页面的URL。

huangapple go评论69阅读模式
英文:

How to Redirect one Page url to another Page url

问题

我想将一个页面重定向到另一个页面,类似于以下内容..
https://www.example.com/foobar.php?emulatemode=2https://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.

&lt;?php
 
header(&quot;Location: https://www.example.com/foobar.php&quot;);
 
exit;
?&gt;

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[&#39;emulatemode&#39;].

huangapple
  • 本文由 发表于 2023年1月9日 18:41:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/75056082.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定