请教apache url rewrite规则

请教apache url rewrite规则

我想将 www.abc.com/profile/about_us.html 转为 www.abc.com/profile.php?page=about_us

我的规则是这样写的:

RewriteRule ^profile/([a-zA-Z0-9_]+\.html)$ profile.php?page=$1


结果发现访问www.abc.com/profile/about_us.html的时候,实际访问的是www.abc.com/profile.php?page=about.html,

请问规则中哪里写错了?
试试
RewriteRule ^profile/([a-zA-Z0-9_]+)\.html$ profile.php?page=$1

QUOTE:
原帖由 bun 于 2009-1-28 00:52 发表
我想将 www.abc.com/profile/about_us.html 转为 www.abc.com/profile.php?page=about_us

我的规则是这样写的:

RewriteRule ^profile/([a-zA-Z0-9_]+\.html)$ profile.php?page=$1


结果发现访问www. ...