我有这样的网址:
http://www.domain.com/account/home
http://www.domain.com/account/settings/email
http://www.domain.com/account/widget
http://www.domain.com/account/widget/2
http://www.domain.com/account/...
我只想在小部件位于第二段时重写 url,并且在没有第一段帐户的情况下重写它,如下所示:
http://www.domain.com/widget
http://www.domain.com/widget/2
http://www.domain.com/widget/...
我该怎么做呢?我知道如何完全但不是选择性地删除帐户。
NB帐户是我的网站所在的子文件夹。
[编辑]
我发现这行得通,这是最好的方法吗?
RewriteEngine on
RewriteRule ^account/widget/(.*)$ /widget/$1 [L]