我的网站有三种不同类型的网址方案:
http://example.com/page.php
http://example.com/anotherpage.php/23
其中23
是ID,并被捕获为GET数据。http://example.com/yetanotherpage.php/23/somedata
其中23
和somedata
被捕获为GET数据。我需要的.htaccess规则是example.com/
被视为PHP页面之后的所有内容,例如:
http://example.com/page.php
转换为http://example.com/page
http://example.com/anotherpage.php/23
转换为http://example.com/anotherpage/23
http://example.com/yetanotherpage.php/23/somedata
转换为http://example.com/yetanotherpage/23/somedata
我能够为#1编写规则,但没有找到#2和#3的任何内容。