Aj Khandal
301 redirect tells search engine and other users that old link is replaced by new link. There are many different kind of 301 redirection.
To make this kind redirection you need to open .htaccess file and put this code.
Redirect 301 /oldfile.htm /newfile.htm
Redirect 301 /oldfile.htm http://demo.net/newfile.htm
RewriteEngine on RewriteCond %{HTTP_HOST} ^demo.com [NC,OR] RewriteCond %{HTTP_HOST} ^www.demo.com [NC] RewriteRule ^(.*)$ http://demo.net/$1 [L,R=301,NC]
RewriteEngine on RewriteCond %{HTTP_HOST} ^demo.com [NC] RewriteRule ^(.*)$ http://www.demo.com/$1 [L,R=301,NC]
RewriteEngine On RewriteCond %{REQUEST_URI} .php$ RewriteRule ^(.*).php$ /$1.htm [R=301,L]