i want to redirect www.site.com/hello to www.newsite.com/hello plz guide me how can i do this i want to redirect just 3 page of one blog to other guide me step by step.. just want to redirect 3 pages not the whole web
You have to have write access to www.site.com/.htaccess (hidden file) Add this line to .htaccess --- RewriteRule ^hello$ http://www.newsite.com/hello [R=301,L] ---
you need to have rewrite engine on. add one more line on the .htaccess I guess RewriteEngine ON RewriteRule ^hello$ http://www.newsite.com/hello [R=301,L] Code (markup):