建議
'url_case' => false
,URL嚴格區(qū)分大小寫
當進行如下配置時
'url_case' => true,
'url_case_separator' => '_', //該項僅當'url_case' => true 時生效
我們可以通過以下兩種URL來訪問頁面
http://servername.com/Idea-framework/index.php/home/MyClass/sayHello
http://servername.com/Idea-framework/index.php/home/my_class/say_hello
如果URL中不存在駝峰型參數(shù)時,可以實現(xiàn)URL不區(qū)分大小寫
http://servername.com/Idea-framework/index.php/home/My/say
http://servername.com/Idea-framework/index.php/home/my/say
更多建議: