Home PHP Framework ThinkPHP How to solve the TP6 error 'The current access route is not defined or does not match'

How to solve the TP6 error 'The current access route is not defined or does not match'

Jun 29, 2020 pm 05:50 PM
tp6

下面由thinkphp框架教程栏目给大家介绍ThinkPHP 6.0 多语言优化扩展包,希望对需要的朋友有所帮助!

How to solve the TP6 error 'The current access route is not defined or does not match'

如果是报路由错误,则说明启用了路由控制,那么所有被访问的页面都需要配置路由,否则将无法访问。
例如:
在浏览器中运行http://hml.tp6.com/admin/getlog
报错:当前访问路由未定义或不匹配
How to solve the TP6 error The current access route is not defined or does not match

已设置过路由:
How to solve the TP6 error The current access route is not defined or does not match

原因:当前访问方式是post,在浏览器中无法模拟访问,必须在apipost中访问。改成get方式也可以。

另注意:如果是多应用模式架构的话,路由要带上模块名,如admin。如图所示目录层级。
How to solve the TP6 error The current access route is not defined or does not match

如图:访问成功
How to solve the TP6 error The current access route is not defined or does not match

如果报404错误,一般是客户端的问题,url输入有误,将你的域名后加上index.php试下,例如你需要访问的路由是:

http://hml.tp6.com/admin/getlog,那么你可以写成这样:http://hml.tp6.com/index.php/admin/getlog
这种情况设置一个伪静态即可,在thinkPHP根目录下的public下添加一个文件nginx.htaccess,添加如下代码:

if (!-e $request_filename) {
   		rewrite  ^(.*)$  /index.php?s=/$1  last;
 }
Copy after login

The above is the detailed content of How to solve the TP6 error 'The current access route is not defined or does not match'. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1655
14
PHP Tutorial
1252
29
C# Tutorial
1226
24