在使用URL传递带.的参数时,获取到的值将.后面的内容抛弃了,如:$this->redirect('/News/category/',array('userId' => urlencode($data['username']));跳转的URL为:http://localhost/News/category/abc%40qq.com,使用$this->_param('userId')获取参数,值只取了abc@qq后面的.com没有了,试了一下,如果url为http://localhost/News/category/abc%40qq.com/是可以获取到abc@qq.com的,但是redirect和U方法生成的url最后都没有“/”。这个应该是一个bug吧?