这是我当前的 htaccess 文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?([^/]+)/(.*) /b.php?n=$1&b=$2 [L,QSA]
这会将我的网址website.com/b.php?n=1&b=1更改为website.com/1/1
我还想将此网址website.com/g/1/1.gif更改为website.com/g/1/1
我怎么能做到这两点?