Joe*_*bby 1 php .htaccess redirect
我在http://site.com/services/上有一个页面,我只想将其重定向到http://site.com/servics/first-service/
什么是最好的重定向来做这个,我该怎么做?
PHP:
header("Location: yourpage.php");
exit;
Run Code Online (Sandbox Code Playgroud)
您必须使用exit或die之后header才能停止执行代码.此外,代码必须在任何输出之前执行.
HTML:
<meta http-equiv="refresh" content="0;url=yourpage.php">
Run Code Online (Sandbox Code Playgroud)
代码应放在<head></head>标签之间.
JavaScript:
window.location = "yourpage.php";
Run Code Online (Sandbox Code Playgroud)
.htaccess:
Redirect 301 /oldpage.php /newpage.php
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
6000 次 |
| 最近记录: |