Well this is really simple but I have no clue..
I have a htaccess file in home directory which points all php files to index.php on home directory.
RewriteRule ^.*php index.php [L]
Now i have created a subdirectories like example.com/mydir/
I want a generic htaccess inside subdirectories that should point
example.com/mydir/ to example.com/index.php
and dont consider any other files.
possible ?