我想重定向301重定向

时间:2017-09-25 12:38:25

标签: javascript php apache .htaccess

我有两个网址,我想将旧网址重定向到新网址,但它不起作用。 任何help.this不能在.htaccess文件中通过php提供任何帮助

Redirect 301 /online/student-login?task=user.login 

http://dev.example.com/devplopment/online/student-login?user.login

1 个答案:

答案 0 :(得分:1)

你需要像这样使用php:

<?php 
header("HTTP/1.1 301 Moved Permanently"); 
header("Location: http://www.example.com/new-page.html"); 
?>

使用javascript无法完成301重定向。因为它是客户端而无效。

如果你想使用htaccess。将此行添加到您的htacces文件中:

Redirect 301 /old-page.html http://www.example.com/new-page.html