On the info.domain subdomain, you need to leave only addresses of the form info.domain / suggest * available, and wrap the rest for the domain. I wrote this rule:
#info.moygorod/suggest RewriteCond %{HTTP_HOST} ^info\.(.*) RewriteCond %{REQUEST_URI} !^/suggest RewriteRule ^(.*)$ http://%1/ [R=301,QSA,L] but for some reason an exception! ^ / suggest does not work, all links from info.domain go to the domain. What is wrong?
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,QSA,L]- Mik