This is my .htaccess file
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.\*)/(.\*)$ web/$1.php [L]<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^(.*)$ web/$1.php [L]<br />
I want the following URLs
http://www.example.com/index
http://www.example.com/index/
http://www.example.com/index/admin
http://www.example.com/index/admin/
http://www.example.com/index/admin/123......
all redirect to
http://www.example.com/web/index.php
but if use my code,
it cannot redirect more than two levels directory...
How can I adjust the .htaccess file?