Case Insensitive Routing in CodeIgniter

前端 未结 8 1020
南笙
南笙 2021-01-13 21:46

I\'ve written this in the CodeIgniter\'s routers.

$route[\'companyname\'] = \"/profile/1\";

This is working fine but when I type \"CompanyN

8条回答
  •  天命终不由人
    2021-01-13 22:09

    IN Directory system/core/uri.php

    search about

    $this->_parse_request_uri()

    you will find 2 replace them with

    strtolower($this->_parse_request_uri())

提交回复
热议问题