伪静态地址中出现中文字符时,规则写法如下:
RewriteRule /tag/(.*)/ /tag.asp?mz=$1 [N,I,L,O]
RewriteRule /tag/(.*)/index_(/d+)/.html /tag.asp?mz=$1&page=$2 [N,I,L,O]
————————————————————————————————————————————
ISAPI_Rewrite帮助手册里有如下说明
O (nOrmalize)
在实行之前标准化字符串。标准化包括URL-ENCODING,不合法的字符的再移动等,这个标记对于URLS和URLS-ENDODED头是有用的
也就是,只需要这样就能够解决
RewriteRule /tag/(.*)/ /tag.asp?mz=$1 [o]
不过,最好这样下
RewriteRule /tag/(.*)/ /tag.asp?mz=$1 [N,I,L,O]