XAMPP yii 高階模板訪問位址設定

2021-07-24 15:47:38 字數 1378 閱讀 4873

第一步

修改host檔案,把想要用於測試的網域名稱指向本機,避免和真實網路上的位址衝突。

① txt 開啟 c:\windows\system32\drivers\etc\hosts

②在該檔案底部新增以下**並儲存:

127.0.0.1 www.a.com

127.0.0.1 admin.a.com

第二步

開啟xampp\apache\conf\httpd.conf 檔案,在底部新增一下內容

servername

www.a.com

# 完整的路徑

documentroot

# use mod_rewrite for pretty url support

rewriteengine

on# if a directory or a file exists, use the request directly

rewritecond

% !-f

rewritecond

% !-d

# otherwise forward the request to index.php

rewriterule

. index.php

# use index.php as index file

directoryindex index.php

# ...other settings...

servername

admin.a.com

documentroot

# use mod_rewrite for pretty url support

rewriteengine

on# if a directory or a file exists, use the request directly

rewritecond

% !-f

rewritecond

% !-d

# otherwise forward the request to index.php

rewriterule

. index.php

# use index.php as index file

directoryindex index.php

# ...other settings...

第三步

重啟apache後,url位址列輸入www.a.com就可以訪問yii高階模板的前端,admin.a.com就可以訪問yii高階模板的後台。

django 高階 模板

模板概述 django處理模板分為兩個階段 檢視呼叫模板 呼叫模板分為三步驟 開啟booktst views.py檔案,呼叫上面定義的模板檔案 from django.http import httpresponsefrom django.template import loader,request...

C 模板高階

模板引數分為類型別形參和非型別形參。類型別形參 出現在模板引數列表中,跟在class或者typename之後類的引數型別名稱。非型別形參 用乙個常量作為類 函式 模板的乙個引數,在類 函式 模板中可將該引數當成常量來使用。注意 通常情況下,使用模板可以實現一些與型別無關的 但一些特殊型別的可能會得到...

django 模板高階

1.語法 1.1.for迴圈 forloop.counter 從1開始 forloop.counter0 從0開始 forloop.revcounter 倒序到1 forloop.revcounter0 倒序到0 forloop.first 第一次迴圈出的結果為true 其他為flase forlo...