I have written some mod_rewrites that work fine on one server, but not another
RewriteEngine on
RewriteRule ^submit/bulk/?$ "submit_bulk.php"
RewriteRule ^submit/?$ "submit.php"
mod_rewrite is working in general, for example going to site/about brings me to about.php on Server A and on Server B
But something strange is happening on Server B when the mod_rewrite goes another level forward
For example, on Server A, when I visit site/submit/bulk it brings me to submit_bulk.php, but when I visit that same location on Server B it brings me to submit.php. It's like on the second server it picks the first mod_rewrite match (/submit) and doesn't keep looking for the actual match (/submit/bulk).
Can you see what might be wrong?
Thank you