当前位置:网站首页>Solve the problem of "no input file specified" when ThinkPHP starts
Solve the problem of "no input file specified" when ThinkPHP starts
2022-07-05 22:27:00 【Mu Yan duck】
solve thinkphp Startup time “No input file specified” The problem of
I'm learning thinkphp when , We can access the default index, But the new method cannot be accessed .
Inquire relevant information on the Internet and get , The use of PHP5.6 yes fast_cgi Pattern , And in some cases , Can't correctly identify path_info The error caused .
therefore , We need to find .htaccess file , Changed to the following
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
You can visit it normally
边栏推荐
- Cobaltstrike builds an intranet tunnel
- GWT module may need to be (RE) compiled reduce - GWT module may need to be (RE) compiled reduce
- The code generator has deoptimised the styling of xx/typescript. js as it exceeds the max of 500kb
- Win11 runs CMD to prompt the solution of "the requested operation needs to be promoted"
- A substring with a length of three and different characters in the leetcode simple question
- Nacos 的安装与服务的注册
- 元宇宙中的三大“派系”
- Sparse array [matrix]
- Metaverse ape received $3.5 million in seed round financing from negentropy capital
- MySQL服务莫名宕机的解决方案
猜你喜欢

Kubernetes Administrator certification (CKA) exam notes (IV)

Two stage locking protocol for concurrency control

如何快速体验OneOS

Metaverse ape ape community was invited to attend the 2022 Guangdong Hong Kong Macao Great Bay metauniverse and Web3.0 theme summit to share the evolution of ape community civilization from technology

Distributed resource management and task scheduling framework yarn

Opencv judgment points are inside and outside the polygon

BFC block level formatting context

Learning of mall permission module

Leetcode simple question: find the nearest point with the same X or Y coordinate

Calculation method of boundary IOU
随机推荐
[agc009e] eternal average - conclusion, DP
How to develop and introduce applet plug-ins
Hcip day 16
Wonderful review of the digital Expo | highlight scientific research strength, and Zhongchuang computing power won the digital influence enterprise award
Binary tree (III) -- heap sort optimization, top k problem
Business learning of mall order module
Win11 runs CMD to prompt the solution of "the requested operation needs to be promoted"
Binary tree (II) -- code implementation of heap
Character conversion PTA
Concurrency control of performance tuning methodology
1.3 years of work experience, double non naked resignation agency face-to-face experience [already employed]
The code generator has deoptimised the styling of xx/typescript. js as it exceeds the max of 500kb
"Chris Richardson microservices series" uses API gateway to build microservices
如何开发引入小程序插件
The difference between MVVM and MVC
Oracle views the data size of a table
Performance testing of software testing
GWT module may need to be (RE) compiled reduce - GWT module may need to be (RE) compiled reduce
database mirroring
2022-07-05: given an array, you want to query the maximum value in any range at any time. If it is only established according to the initial array and has not been modified in the future, the RMQ meth