一、TP6设置
1. 首先搭建PHP使用环境,比如phpstudy等,安装composer,通过composer安装tp6。
composer create-project topthink/think tp6
2. 运行TP6
php think run
也可以进行域名绑定,这样就可以不用运行上面的代码,可以直接使用了。
二、打开错误调试
1. 在文件夹中找到 .example.env 文件,重命名,去掉前面的 .example
2. 或者 找到 config/app.php下的 show_error_msg ,改成 true
三、隐藏入口文件(配置伪静态)
一般在 public 中的 .htaccess 中添加即可,配置域名的可以在面板网站后的设置中增加伪静态。
1. Apache
以下两种都是 Apache 的伪静态配置,选择其中一种使用即可。
<IfModule mod_rewrite.c>
#如果mode_rewrite.c模块存在 则执行以下命令
Options +FollowSymlinks -Multiviews
RewriteEngine On #开启 rewriteEngine
# !-d 不是目录或目录不存在
RewriteCond %{REQUEST_FILENAME} !-d
# !-f 不是文件或文件不存在
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,PT,L]
</IfModule>
Options +FollowSymlinks -Multiviews
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
2. nginx
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
发表评论 取消回复