I need to redirect some page in website :
site.com/sub1/sub2/sub3 redirect to site.com/newsub I write this code for this redirect
RedirectMatch 301 /sub1/sub2/sub3/(.*) /newsub//$1
everything is ok but I need this url not redirected
site.com/sub1/sub2/sub3/pages
how can I do this?