The URI you submitted has disallowed characters

前端 未结 3 1142
挽巷
挽巷 2021-02-03 10:18

I have a code igniter project, and I wanted to try debugging it using Zend Studio. WHen I start debugging, I immediately run ino

\"The URI you submitted has disallowed c

3条回答
  •  梦谈多话
    2021-02-03 11:13

    in Expression engine you'll find this in /admin/expressionengine/config/config.php

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

    change to

    $config['permitted_uri_chars'] = ''; 
    

    but read the line comment before you do this.

    Or don't use anything CI based.

提交回复
热议问题