I m 拥有一个充满活力的网络服务器。
我想改变:
http://example.com/mypage.phtml?cmd=print
=> to =>
http://example.com/index.php?page=mypage&cmd=print
问题在于:
$_GET : array( page => mypage , ?cmd => print )
Cherokee与:
regexp: ^/(.*).phtml(.*)$
internal subst: /index.php?page=$1&$2
因此,我的问题是: 如何最佳地“回答”问题编号if present。
关于
/