I am looking for a regex to match some part of URL to redirect my pages accordingly.
I have googled it with no luck.
EX:
http://www.somesite.com/cat1/cat2/
In this i am looking to match any word or char after the domain name, so it would be /cat1/cat2/
http://www.somesite.com/cat1/cat2/cat3/
In this i am looking to match any word or char after the domain name, so it would be /cat1/cat2/cat3/
looking for 2 diff regex to match this kind of url. First regex that matches only 2 category and second regex that matches only 3 category.
Thanks guys in advance.