有问题与htaccess(国防部重写和redirect)

我有一个网站在哪里使用mod_rewrite。

RewriteRule ^([^/]*)/([^/]*)\.html$ /?systemdomain=$1&page-slug=$2 [L,QSA] 

可以生成一个url等

http://example.com/ny-sample-lawfirm-11415/drug-crimes.html ,这完美无缺。 这个物理path位于

 /homepages/profiles 

现在是这个问题,如果我有一个url,如;

example.com/ny-sample-lawfirm-11415/newdirectory即使存在新的目录( /homepages/profiles/newdirectory ),我也会得到一个404错误

我将需要访问

 example.com/ny-sample-lawfirm-11415/newdirectory example.com/ny-sample-lawfirm-11415/newdirectory/sub1 

所有这一切都会生成一个404。通过.htaccess解决这个问题的任何方法。

不知道我是否应该修改重写或添加某种types的redirect。 任何帮助,将不胜感激