后台地址:http://域名/index.php/systemadmin/Admin/login
后台账户:admin
后台密码:www.yfphp.cn
前台账户: 13899999999
前台密码: 13899999999
测试环境:php7.0+mysql5.6
数据库配置文件 application/database.php
设置伪静态规则 / ThinkPHP
tp5伪静态设置
1、【nginx】
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
2、【apache】
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
资源下载
资源下载