|
.htaccess 301 redirection 2 methods
Add to .htaccess file, or make a .htaccess file in your root document directory. Use one of the following methods in your .htaccess file.
1) Redirect 301 oldpage Newpage-Url
2) RewriteEngine On
RewriteRule ^oldpage.html$ /Newpage.html [R=301]
|