Hi people! Please help me! I have one site and wanted to redirect all the directories for the other site root, except one, /blog/. For example: www.mysite.com/xyz - redirect to www.othersite.com www.mysite.com/aaa - redirect to www.othersite.com www.mysite.com/blog - not redirect Can help me? Thanks and sorry for my English!
you can add this line to your htaccess: redirect /xyz http://www.othersite.com/ redirect /aaa http://www.othersite.com/
Thanks for the reply... But is possible redirect all links? For example: www.mysite.com/ngjsfbd/ www.mysite.com/all/ www.mysite.com/.... less www.mysite.com/blog/ -> no redirect Can help me?
Does it Apache .htaacess file ? If so then go to www.apache.org theres is a lot of information "how to congigure it" regards,
RewriteEngine on RewriteBase / RewriteRule ^xyz/(.*)$ [url]http://www.othersite.com/[/url] [R=302] RewriteRule ^all/(.*)$ [url]http://www.othersite.com/[/url] [R=302] ........................... Code (markup):