本文共 642 字,大约阅读时间需要 2 分钟。
四、url的4种访问方式
1.PATHINFO 模式 -- (重点)http://域名/项目名/入口文件/模块名/方法名/键1/值1/键2/值2http://localhost/thinkphp/index.php/Index/indexhttp://localhost/thinkphp/index.php/Index/add/name/leyangjun ---传参(也支持通用的模式?name=leyangjun)2.普通模式http://域名/项目名/入口文件?m=模块名&a=方法名&键1=值1&键2=值2http://localhost/thinkphp/index.php?m=Index&a=index&name=leyangjun3.REWRITE模式(比如不想看见index.php)一:要开启Apache模块 :LoadModule rewrite_module modules/mod_rewrite.so --去掉#号二:在入口文件出写.htaccess在该文件中写入重写规则,文件已在分享中http://域名/项目名/模块名/方法名/键1/值1/键2/值2http://localhost/thinkphp/Index/index4.兼容模式http://域名/项目名/入口文件?s=模块名/方法名/键1/值1/键2/值2http://localhost/thinkphp/index.php?s=Index/index转载地址:http://yyvul.baihongyu.com/