Hi All,
please see this rewrite block:
if (!-e $request_filename)
{
rewrite ^/myadmin/(.*)$ /myadmin/index.php?/$1 last;
rewrite ^/(.*)$ /index.php?/$1 last;
break;
}
I want to redirect all request to /myadmin/* to /myadmin/index.php?/*
and all request to not ubder myadmin to redirect to index.php?/*
The second works, but the first does not.
What could be the problem?
Thanks in advance:
sipiatti