THINKPHP短鏈接設置方法(路由設置)


//路由設置(短鏈接設置)
'URL_ROUTER_ON' => true,
'URL_ROUTE_RULES' => array(
'log' => 'Login/index',
'admin' => 'Login/admin',
'reg' => 'Login/register',

'c/:id' => 'Index/index/user'

'/^C_(\d+)$/' => 'Index/index/user?id=:1'
),

長鏈接:http://localhost/index.php/'Index/index/user/c/9

縮短成以下:

短鏈接:http://localhost/index.php/c/9

 

短鏈接:http://localhost/index.php/C_9


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM