Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1017 Bytes

README.md

File metadata and controls

46 lines (28 loc) · 1017 Bytes

Homepod

自用小框架,不断学习,不断完善

运行(测试)环境

PHP 7.2.19

MYSQL 5.7

食用指南

想个办法从github上把源码搞下来,推荐使用git clone。在项目根目录下执行

composer install

提示找不到指令的可以安装一下composer,国内的用户推荐使用阿里的composer镜像。使用homepod.sql初始化你的数据库。

然后在根目录的.env文件中配置你的数据库信息,在nginx中添加以下配置

rewrite ^/(.*)/$ /$1 redirect;

if (!-e $request_filename){
	rewrite ^(.*)$ /index.php break;
}

如果你使用的是apache,那么在你的配置文件中添加

RewriteEngine On
RewriteBase /

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php?$1 [QSA,L]

大功告成。更多详细配置可以查看Wiki