I have two url ,I want redirect old url to new url but its not working. any help.this is not working in .htaccess file any help through php
Redirect 301 /online/student-login?task=user.login
http://dev.example.com/devplopment/online/student-login?user.login
you need to use php like this :
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/new-page.html");
?>
301 redirect can not be done with javascript. because it is client side and not effective.
if you want to use htaccess. add this lines to your htacces file :
Redirect 301 /old-page.html http://www.example.com/new-page.html