<form class="form-inline pull-left" role="form" action="{:U('index')}" method="get">
前端表单渲染后的action地址如下<form class="form-inline pull-left" role="form" action="/index.php?m=Admin&c=User&a=index" method="get">
我提交表单之后的URL如下http://localhost/index.php?type=nickname&key=xiaoli
其实我理想的地址应该如下http://localhost/index.php?m=Admin&c=User&a=index&type=nickname&key=xiaoli
我尝试过如下方法:1,我把提交方式改为post 问题得到解决!
2,我修改了URL模式为伪静态 问题解决!
OK, 我想知道 用get方式, 请问有啥解决方案不?
最佳答案
