我在 .htaccess 中有论文行:
RewriteRule ^page-([0-9]+)-pg-1\.html$ page.php?b=$1&pg=1 [L,NC,NS]
RewriteRule ^page-([0-9]+)-pg-([0-9]+)\.html$ page.php?b=$1&pg=$2#nv [NE,L,NC,NS]
RewriteRule ^page-([0-9]+)-pg-([0-9]+)-lo\.html$ page.php?b=$1&pg=$2&lo=1 [L,NC,NS]
但它不像我预期的那样工作。似乎它没有转到页面中的#nv。这条规则有什么问题?