我收到此错误“您提交的URI已禁止使用该字符。”当我搜索完整的电子邮件时,我收到了这个错误。
我也改变了这两件事,但没有运气
$config['enable_query_strings'] = True;
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@\=';
答案 0 :(得分:0)
更改此
$config['enable_query_strings'] = True;
到
$config['enable_query_strings'] = FALSE;
希望这会对你有所帮助。
仍然会收到错误..请发布您的网址及其生成方式。
答案 1 :(得分:0)
只需更改为:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@\=+()';