ThinkPHP6.0较5.0改变了安装方式,5.0可以直接下载文件,6.0只能命令
1.安装composer,教程:
https://www.runoob.com/w3cnote/composer-install-and-usage.html
上面注意配置path;
安装tp6框架
composer create-project topthink/think=6.0.* tp6
运行项目,这里我用的是phpstudy
创建一个站点,接下来,配置伪静态:
niginx是:
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } } ///也可以直接在phpstudy直接这样使用: if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; }
我这里用的是上面那个配置伪静态,
另外,apache环境不一样,apache环境下的tp5伪静态是:
Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
接下来就是直接访问站点,成功
另外还有一种启动项目的方法:
php think run
出现
接下来访问http://127.0.0.1:8001就行了
如果端口被占用,就用: php think run -p 端口
来源地址:https://blog.csdn.net/qq_44693047/article/details/126548066