I'm trying to redirect a folder and all its sub files to a URL in .htaccess file.
But
Code:
Redirect 301 /abc/cba/ http://www.new.com/
only redirect
Code:
http://www.old.com/abc/cba/
to
Code:
http://www.new.com/
, sub files like
is redirected to
Code:
http://www.new.com/ddd/
instead of
Code:
http://www.new.com/
Could anyone help? Thanks.