thinkphp3 2 url位址大小寫設定

2021-07-13 16:11:55 字數 619 閱讀 5439

在config.php

裡邊對url

大小寫敏感進行設定

引入檔案:include 「hello.php」;   include(「hello.php」); 實際都會把指定檔案找到

hello.php

tp框架本身自己做了額外設定

:include (「hello.php」)  include 「hello.php」;  表示需要引入兩個不同檔案

總結:1. 建立應用index.php

入口檔案

2. 建立控制器和檢視模板

3. 控制器和真實模板進行整合(css  img  js)

4. 配置檔案:

a) convertion.php

b) config.php    shop/common/conf/config.php (針對所有分組模組都起作用)

c) config.php    shop/home/common/conf/config.php  (針對

home

分組模組起作用

)

thinkphp3 2 URL模式 用於自學

thinkphp3.2 url模式 標準url格式。http servername index.php 模組 控制器 操作 安裝後預設的pathinfo模式http servername index.php home index index 不同的url模式獲取模組和操作的方法不同,thinkphp...

thinkphp5 0 URL 位址生成

使用系統類 使用助手函式 use think url 輸出首頁位址 url build index index index 這個也是輸出首頁位址 url index index index 帶引數的url位址 use think url 輸出首頁位址 url build index index in...

thinkphp5在URL位址裡隱藏模組名

新的thinkphp5的路由功能很強大,完全可以自定義以滿足自己的要求 thinkphp5.0的路由規則如下 我們不僅可以通過apache的.htaccess配置檔案在url中隱藏index.php 還可以通過以下自定義路由配置 隱藏控制名,以達到url更簡短的效果 你的route.php配置如下 ...