thinkphp5.1 tp5.1 安装 初始化 配置 重写 url 路由 Rewrite
Posted William Shaw技术博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5.1 tp5.1 安装 初始化 配置 重写 url 路由 Rewrite相关的知识,希望对你有一定的参考价值。
下面是thinkphp5.1 官方文档给出的配置,可能不好使
.htaccess改成下面亲测可用
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule>
thinkphp5.1的默认报错级别不太适合开发,可以在配置文件app.php加上:error_reporting(E_ERROR | E_PARSE ); //设置报错级别
以上是关于thinkphp5.1 tp5.1 安装 初始化 配置 重写 url 路由 Rewrite的主要内容,如果未能解决你的问题,请参考以下文章
thinkphp5.1封装一个分页组件,tp5.1怎么封装分页组件