Hello, this redirect redirects all subpages of a domain to another domain while not redirecting to index.php but to same page, only at another domain: RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^cz\.hq-scenes\.com$ [NC] RewriteRule ^(.*)$ http://cz.hq-scenes.com/$1 [R=301,L] i want to achieve that only pages like /viewtopic.php............... will be redirected (............. means any other characters) Please how to redirect all viewtopic.php pages only? How to modiffy it?