一、介紹
寶塔面板是一款開源的服務器管理面板,提供了豐富的功能和良好的用戶體驗,極大地簡化了服務器管理。寶塔開心版是一些愛好者在寶塔面板基礎上進行開發的擴展版本,增加了很多新的功能和改進。
二、主要功能
與傳統的寶塔面板相比,寶塔開心版添加了很多新的功能:
1、優化了網站管理界面,更加美觀、實用,操作更加方便;
2、新增了虛擬主機、域名解析、郵件管理等功能,提供一站式服務;
3、增加了 Let’s Encrypt 免費證書申請和部署功能,讓網站安全可靠;
4、打通了寶塔面板與 WordPress、Typecho、Discuz 等 CMS 平台的集成,安裝部署更加方便;
5、增加了網站備份、一鍵還原、恢復等功能,保障數據安全;
6、完善了後台監控、CPU、內存、流量等實時狀態監控,操作更加直觀。
三、使用說明
寶塔開心版的使用非常簡單,在主頁中我們可以直接看到所有功能模塊的入口,如下圖:
<div class="menu-item">
<h3>網站</h3>
<div>
<a href="<?php echo $websiteList_url;?>">網站管理</a>
<a href="<?php echo $ftp_url;?>">FTP管理</a>
<a href="<?php echo $databaseList_url;?>">數據庫管理</a>
<a href="<?php echo $backupList_url;?>">網站備份</a>
</div>
</div>
點擊對應的入口即可進入到相應的界面。例如進入網站管理後,我們可以查看網站列表,添加、刪除、修改域名,安裝 SSL 證書,管理 FTP,查看 PHP 版本,查看訪問日誌等。如下圖:
<div class="panel-item">
<div class="panel-item-title">網站列表</div>
<div class="panel-item-content">
<div class="list-toolbar">
<div class="batch-operate">
<div class="batch-option">
<input type="checkbox" id="check-all"><label for="check-all">全選</label>
</div>
<div class="batch-btns">
<button type="button">刪除</button>
<button type="button">分離站點</button>
<button type="button">備份</button>
</div>
</div>
<div class="search-box pull-right">
<input type="text" placeholder="輸入域名或備註查詢">
<button type="button">搜索</button>
</div>
</div>
<div class="table-wrap">
<table class="table">
<thead>
<tr>
<th><input type="checkbox"></th>
<th>域名</th>
<th>類型</th>
<th>目錄</th>
<th>PHP</th>
<th>證書</th>
<th>備份</th>
<th>訪問日誌</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td><a href="#">www.example.com</a></td>
<td>PHP</td>
<td>/www/wwwroot/example.com</td>
<td>7.3</td>
<td><span class="green">已部署</span></td>
<td><a href="#">2022-01-01</a></td>
<td><a href="#">查看</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
四、結語
寶塔開心版是一個強大的、易用的服務器管理面板,它支持各種服務器環境和語言,包括 LNMP/LAMP、WordPress、Typecho、Discuz 等,還提供強大的監控、備份、恢復、DNS、SSL 證書等服務,讓網站管理變得更加簡單、高效、安全。
原創文章,作者:小藍,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/240159.html