ThinkPHP 3.1.2 URL<1>

#
# ThinkPHP 3.1.2 URL


     :
 、URL  
	1、          
	2、                  
		'URL_CASE_INSENSITIVE'=>true,//url      	

	3、       UserGroupAction
		  url         
		http://localhost/thinkphp4/index.php/user_group/index

	4、  'URL_CASE_INSENSITIVE'=>false
		  url     
		http://localhost/thinkphp4/index.php/UserGroup/index

thinkphp        :

 、URL   
	'URL_HTML_SUFFIX'=>'html|shtml|xml',//        
 、URL  
	1、    
		             
	2、    
		1.         
			'my'=>'Index/index',//            my    Index/index

			':id/:num'=>'Index/index',//         10/100   Index/index

			'year/:year/:month/:date'=>'Index/index',//           
			'year/:year\d/:month\d/:date\d'=>'Index/index',//            
			   \d         
			'my/:id$'=>'Index/index',//   $         my/1000           
		2.         
 、URL  
 、URL  


//      :

<?php
return array(
	//'   '=>'   '
	'TMPL_L_DELIM'=>'<{',   //      
	'TMPL_R_DELIM'=>'}>',    //      
	'DB_PREFIX'=>'',     //     
	'DB_DSN'=>'mysql://root:[email protected]:3306/devops', //DSN         
	'SHOW_PAGE_TRACE'=>true,//    Trace
	'URL_ROUTER_ON'=>true,
	'URL_ROUTE_RULES'=>array(
	 ':id/:num'=>'Index/index',
	 ),
);
?>

좋은 웹페이지 즐겨찾기