如果我使用这样的规则:
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /project/index.php?page=$1 [L]
结果是我使用www.myweb.com/index.php?page=about
的网页变为www.myweb.com/About.html
我的问题是,如果我指向user.php
并创建类似www.myweb.com/user.php?page=NewPage
的网页,则结果不能像www.myweb.com/NewPage.html
一样。
我在.htaccess
RewriteRule ^([^/]*)\.html$ /project/user.php?page=$1 [L]
如何为我的案例添加规则?