我正在为用户的帐户页面构建一个网站的一部分。
这部分网站的地图是这样的:
*root*/account/details.php
*root*/account/subscriptions.php
*root*/account/options.php
我想这样做,如果用户去:
*root*/account
他们被重定向到
*root*/account/details.php
基本的重写将是这样的:
RewriteRule ^account/ account/details.php [L]
然而,这条规则意味着所有页面(订阅、选项)也重定向到细节,这显然是有问题的。
如何编辑我的规则,使其仅将 root /account 重定向到详细信息页面,而让其他页面独立工作?