```
3. 修改samrty.php 將「<{$themeUrl}>」變數修改成不含「/」 ```
#定義模板URL
$smarty->assign("themeUrl", WEB_URL.'/templates/'.$WEB['theme_name']);//修改不含「/」20161020
```
4. ctrl + H 取代功能
「"<{$themeUrl}>/vendor/」 取代「"vendor/」
「"<{$themeUrl}>/css/」取代 「"css/」
「"<{$themeUrl}>/img/」取代 「"img/」
「"<{$themeUrl}>/js/」取代 「"js/」
五、建立後台
1. 建立「admin」資料夾
2. 把「/head.php」、「/index.php」複製到 「/admin」
3. /admin/head.php,由於多了一個資料夾admin,所以「WEB\_PATH」的路徑多了 「/admin」 ```
define('WEB_PATH', str_replace("\\","/",dirname(__FILE__)));//前台
```
修改 ```
define('WEB_PATH', str_replace("/admin","",str_replace("\\","/",dirname(__FILE__))));//後台
```
4. 佈景目錄 => $WEB\['theme\_name'\] = "admin";
5. /admin/head.php ```
/*---- 必須引入----*/
#引入樣板引擎
require_once '../smarty.php';
#引入資料庫設定
require_once '../sqlConfig.php';
#引入共用函數
require_once '../function.php';
```
6. 把 /templates/admin/index.html 刪除,複製 /templates/admin/pages/blank.html => /templates/admin/theme.html
「"<{$themeUrl}>/vendor/」 取代「"../vendor/」
「"<{$themeUrl}>/dist/」取代 「"../dist/」