Assuming i have the following project structure
Root
- Frontend
-- index.php
- Backend
-- index.php
I want my www.mysite.com to use /www/root/frontend as the document root while /www/root/backend to be the document root if www.mysite.com/admin was requested. Note: Alias does exact match with /admin/ while i need /admin/* to work for the second case.
How should i go about this?
Thanks