i feel my question is simple but I am definitely not a pro at regex. I am looking to redirect every page possible to a single page on the same site.
For example: currentsite.com and anything else that could be a path like currentsite.com/about or currentsite.com/company should be redirected to currentsite.com/mainpage
When i tried using the following /(.*)
as the relative url to match it basically tries to redirect everything including the currentsite.com/mainpage causing too many redirects.
I am doing this in wordpress using the redirection plugin that allows to use regex. Any help will be appreciated.