thinkPHP5使用的一些小配置

Posted nong99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkPHP5使用的一些小配置相关的知识,希望对你有一定的参考价值。

开发环境:

版本:php5.6

系统:windows

工具:phpstudy、vscode

 

遇到的报错信息error:

一、原php5.4版本(不限定)切换到5.6版本,路由报错:

No input file specified.

解决办法:修改 .htaccess 规则,如下:

IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

修改处: 为index.php添加?

 

二、php.in的配置

错误信息如下:

Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set ‘always_populate_raw_post_data‘ to ‘-1‘ in php.ini and use the php://input stream instead. in Unknown on line 0

分析:这个问题和PHP版本有关系,PHP 5.6已经废弃了$HTTP_RAW_POST_DATA。 

解决办法:修改php.ini,如下:

always_populate_raw_post_data = -1

 

 

 

 

 

以上是关于thinkPHP5使用的一些小配置的主要内容,如果未能解决你的问题,请参考以下文章

Android课程---Android Studio使用小技巧:提取方法代码片段

thinkphp5怎么用wechat.php配置微信公众

Lnmp ThinkPHP5 开启pathinfo支持

CentOS7 Nginx ThinkPHP5.1 配置

thinkphp5.1自定义配置文件

thinkphp5 默认配置代码