What is the best method to rewrite anything below \"/some/subdir\" to \"/some/subdir/projects\" like from this:
http://www.mydomain.com/some/subidr/test/
I would use this:
RewriteEngine On RewriteRule ^(/some/subdir)/(.*)$ $1/projects/$2
This will redirect /some/subdir/ to /some/subdir/projects/.
/some/subdir/
/some/subdir/projects/
Note that the leading / is actually required to match the beginning of the URL, unless you have RewriteBase / set somewhere.
/
RewriteBase /