Let's say i have a main folder in my website named "test" which contains an index.php file www.myWebsite.com/test/index.php
How can i make it so that any url which contains this path "www.myWebsite.com/test" redirects to "www.myWebsite.com/test/index.php" and still hold the first request path
for example:
www.myWebsite.com/test/User redirects to www.myWebsite.com/test/index.php
www.myWebsite.com/test/User/2 redirects to www.myWebsite.com/test/index.php
www.myWebsite.com/test/Account redirects to www.myWebsite.com/test/index.php
www.myWebsite.com/test/Account/5 redirects to www.myWebsite.com/test/index.php