代码符:您提交的 URI 不允许使用字符

2022-08-30 13:03:25

我的网址是:

https://example.com/c3dlZXRfcmFqdmk5MUBob3RtYWlsLmNvbQ=

当我删除时,它工作正常。=

我有这个在config.php

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';

错误:

The URI you submitted has disallowed characters.

如何在 URI 中允许或签名?===

我通过更改此内容进行了尝试:

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-='; // added = sign at the end

答案 1

在 /project-folder-name/application/config/config 中.php配置以下变量:

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@\=';

它也适用于 @字符


答案 2

文件中的更改config.php

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-\=';

$config['enable_query_strings'] = TRUE;

它对我有用。自己试试吧!


推荐