.htaccess - Redirect single subdomain url to root domain url -


i looking 301 redirect single url on subdomain url on root domain. eg:

'sub.domain.com/page' redirect 'domain.com/work/name'

i not want affect other pages on subdomain, subdomain should operate normal, aside 1 specific url.

how achieved .htaccess?

thanks in advance. darrell

using mod_rewrite, can put these rules in htaccess file in subdomain's document root:

rewriteengine on rewritecond %{http_host} ^sub\.domain\.com$ [nc] rewriterule ^folder/page$ http://domain.com/work/name [l,r=301]