I want to redirect sub.domain.com to domain.com, including all url's from the sub.domain.com (eg. sub.domain.com/page25.html etc) Any ideas?
hello maybe this help u add this in htaccess RewriteEngine on RewriteCond %{HTTP_HOST} !^www.domain.com$ RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301] change the url ! Best