url encoded forward slashes breaking my codeigniter app

后端 未结 4 1563
借酒劲吻你
借酒劲吻你 2020-12-06 01:34

i’m trying to create a url string that works like this:

/app/process/example.com/index.html

so in other words,

/app/process         


        
4条回答
  •  有刺的猬
    2020-12-06 02:17

    Change your permitted_uri_chars index in config file

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

提交回复
热议问题