Home > Article > PHP Framework > Pay attention to the access error "Illegal request: index/add" in TP6 and the pitfalls in multi-application settings.
The following is the thinkphp framework tutorial column to share with you the access error "illegal request: index/add" and pitfalls in multi-application settings in TP6. I hope it will be helpful to friends who need it. Helped!
1. Create a multi-application directory
2. App in the config file. php, open multiple applications
3. Access the directory file under the admin application, you can access it normally
Note: There are pitfalls here, If the routing method for accessing this file is defined in the route directory of the next project, the url access will be invalid. Prompt illegal request.
The error is reported as follows
So if the routing access file method is configured, use the routing definition to access
4. Configure domain name binding
Set in the app.php file under config.
Access after configuration
Note: If a domain name is bound to an application, other parallel applications can no longer use this domain name for access. You can set other domain names for binding, otherwise you will not be able to access it.
The above is the detailed content of Pay attention to the access error "Illegal request: index/add" in TP6 and the pitfalls in multi-application settings.. For more information, please follow other related articles on the PHP Chinese website!