this rewriterule only rewrite level.php and when try localhost/a/b/115-aaa.html send all requests to level.php but localhost/a/b/ is work
why ?
RewriteEngine On
RewriteRule ^(.*)\/(.*)-(.*).html$ page.php?page=$1&a=$2&b=$3 [QSA]
RewriteRule ^(.*)$ level.php?q=$1 [QSA]