Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个将成员数据组织到子文件夹中的网站。要访问数据,用户需要访问以下内容:-
www.domain.com/members/so/me/on/esfolder
我的问题是,我可以在 .htaccess 文件中使用一个函数,让用户只需键入以下内容即可访问同一页面:-
www.domain.com/members/someonesfolder
我已经阅读了重写语法,但很难理解如何做到这一点。这只是在特定点之后删除正斜杠的情况。
有任何想法吗?提前致谢。
经过几个小时的不间断混乱后,我自己弄清楚了……对于那些可能想知道的人,这是我使用的代码……
RewriteRule ^members/([A-Za-z0-9]{1,2})([A-Za-z0-9]{1,2})([A-Za-z0-9]{1,} ) 会员/$1/$2/$3/ [L]
在上面,只有三个子文件夹钻取(这是我决定做的,而不是我原来问题中的四个)。
希望这对其他人有帮助!