Home > Article > Backend Development > How to make ThinkPHP support uppercase and lowercase url address access, thinkphp uppercase and lowercase_PHP tutorial
The example in this article describes how to enable thinkphp to support uppercase and lowercase url address access. Share it with everyone for your reference. The specific implementation method is as follows:
Usually ThinkPHP distinguishes between uppercase and lowercase URLs by default. This is also the same as the Linux system. The lowercase URLs have two different names. However, we are used to using Windows and treat uppercase and lowercase URLs the same, so we still have to base on user habits. Let’s deal with the problem. Let’s take a look at how to solve the problem.
The case recognition function of thinkphp is turned on in the configuration file, so that links with both upper and lower case can be accessed normally:
'URL_CASE_INSENSITIVE' =>true
File naming is standardized, but when using __URL__ in the template to obtain the current url path, the url is not obtained correctly.
The manual says:
One thing to note here is that if we define a module class of UserTypeAction, then the URL access should be:
http://serverName/index.php/user_type/list
instead of
http://serverName/index.php/usertype/list
The link obtained by using __URL__ in the template is still the one below, without underlining.
This problem has been reported by many people on the Internet. One solution is to modify the source code of tp:
In the Dispatcher.class.php file under the Core folder of the Lib folder of tp, find line 181, where the address acquisition method of __URL__ is defined:
http://www.bkjia.com/PHPjc/904012.html