To redirect all links to www.example.org to go to www.example.org/new, add this to your .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/new/
RewriteRule ^(.*) $1 [L]
RewriteRule ^(.*)$ /new/$1 [L,R=301]
</IfModule>
. , . , , robots.txt(, , ). .
SEO , . :
RewriteRule ^corporateplan$ /corporate-services/corporate-plan [L,R=301]