AI摘要
茉莉博客
🎉 What's this?
这是一款在线工具箱
程序,您可以通过安装扩展增强她的功能
通过插件模板的功能,您也可以把她当做网页导航来使用~
🎊 环境要求
PHP
>= 7.4MySQL
>= 5.6fileinfo
扩展- 使用
Redis
缓存需安装Redis
扩展
部署
- 设置运行目录(绑定目录)为
public
- 设置伪静态
- 如果是下载的Source code包,还需Composer安装依赖(Release页面下载的安装包不需要)
- 打开网站会自动跳转到安装页面,根据界面提示完成安装。
- 更新方法:下载源码后直接上传覆盖即可
🍰 伪静态
- Nginx
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
- 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>
© 版权声明
THE END
暂无评论内容