thinkphp訪問網域名稱隱藏

2021-07-04 09:22:33 字數 553 閱讀 3968

thinkphp隱藏網域名稱中的home

新增如下**:

//允許訪問的模組列表

'module_allow_list' => array('home','admin','user'),

//預設模組

'default_module' => 'home',

thinkphp隱藏網域名稱中的index.php

配置檔案config.php

'url_model' => 2,

根目錄下(與應用入口檔案index.php同級目錄)建立.htaccess檔案

新增如下**:

options +followsymlinks

rewriteengine on

rewritecond % !-d

rewritecond % !-f

rewriterule ^(.*)$ index.php/$1 [qsa,pt,l]

apache環境下,修改httpd.conf配置檔案,需載入mod_rewrite.so模組,且allowoverride none,將none改為all

THinkPHP 5 0 網域名稱路由

1 hinkphp支援完整網域名稱 子網域名稱和ip部署的路由和繫結功能 要啟用網域名稱部署路由功能,首先需要開啟 url domain deploy true 2 路由配置檔案route.php,加入以下幾行 route domain www.sn1987.com index route doma...

thinkPHP5 0 獲取網域名稱

server http host 和 server server name 的區別 1.通常情況 server http host 在http 1.1協議規範下,會根據客戶端的http請求輸出資訊。server server name 預設情況下直接輸出apache的配置檔案httpd.conf中的...

thinkPHP 關於網域名稱指向的問題

一般專案的網域名稱指向都是可以直接配置的,在預設的情況下。一般都是指向index.php檔案。我就直接上圖吧,這裡是用我的公司專案名稱www.xcj.com為網域名稱。一般的進入專案,呼叫預設的控制器 這裡直接進去入口檔案,所以網域名稱是指向專案名字下的admin模組的的list控制器 而 這裡是沒...