我需要将localhost / _escaped_fragment _ = / index重定向到localhost / snapshots / index.html为了做到这一点,
RewriteRule ^(.*?)_escaped_fragment_=(.*)$ /$1snapshots$2.html [L,NC,R]
但我还需要用2美元的下划线替换斜线,像localhost / shapshots / products / 95.html这样的路径需要转换为localhost / shapshots / products_95.html
怎么做?
提前致谢。