TA的每日心情 | 开心 2024-7-27 16:28 |
---|
签到天数: 155 天 [LV.7]常住居民III
管理员
- 积分
- 34003
|
安装教程
下载LightPicture
上传至 web 运行环境 解压。
设置运行目录为:public
配置网站默认文档:index.html/index.php
配置 Rewrite 规则为:thinkphp
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>
Nginx
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}
ps:访问域名/install,然后进行安装。
安装完成后账号默认为admin 密码:123456
下载地址
|
|