最火表情包斗圖【前端+后臺(tái)】源碼資源,由論壇用戶分享,最火表情包的一個(gè)官方最新版本源碼,提供前端和后臺(tái)完整版本,可以進(jìn)行編輯生成,可以獲取相關(guān)的域名信息,幫您輕松管理自己的專屬表情包站點(diǎn)。本次帶來(lái)最火表情包斗圖源碼資源整合版下載,提供詳細(xì)的安裝教程說(shuō)明,歡迎下載使用。
最火表情包斗圖介紹
大家好,很高興為大家錄制本次教程。
所有資源均來(lái)自互聯(lián)網(wǎng),感謝您的支持。
最火表情包斗圖教程
首先我們先創(chuàng)建站點(diǎn)
php73
然后上傳我們的后端
上傳后解壓
然后配置站點(diǎn)偽靜態(tài)
設(shè)置網(wǎng)站目錄為public 并且關(guān)閉防跨站
域名/nanfeng
然后導(dǎo)入我們的數(shù)據(jù)庫(kù)
修改數(shù)據(jù)庫(kù)連接文件
/data/config
admin 123456
插件 微信小程序里添加小程序 對(duì)應(yīng)著填寫你的小程序ID和密鑰
申請(qǐng)寶塔SSL 然后部署
修改合法域名
前端找到common-->vendor.js 第2771行 修改為你的域名
修改為你想要的名字
圖片再這里替換static\images\index.png
將修改好的放回去就行了 注意圖片格式為png格式3
上傳發(fā)布就可以了 感謝您的觀看 本次教程到此結(jié)束
偽靜態(tài)說(shuō)明
location / {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?s=$1;
}
}
location /api/ {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/api/(.*)$ /api/index.php?s=$1;
}
}
location ~* \/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* \/themes\/.+\.(html|php)$ {
return 404;
}