一般是因為隱藏了入口檔案,但.htaccess沒有配置。
httpd.conf配置檔案中載入了mod_rewrite.so模組
allowoverride none 將none改為 all
把下面的內容儲存為.htaccess檔案放到應用入口檔案的同級目錄下
options +followsymlinks -multiviews
rewriteengine on
rewritecond % !-d
rewritecond % !-f
rewriterule ^(.*)$ index.php?/$1 [qsa,pt,l]
TP5偽靜態配置
為專案配置虛擬網域名稱 nginx 1 phpstudy 配置 站點網域名稱管理 正確配置指向應用專案 生成相應的配置檔案引數 本地配置host檔案 伺服器配置網域名稱 2 在nginx的conf裡面的vhosts.conf中找到剛剛生成的配置檔案引數在location 裡面配置 if e kate...
tp5 入口檔案
thinkphp採用單一入口模式進行專案部署和訪問,無論完成什麼功能,乙個應用都有乙個統一 但不一定是唯一 的入口。應該說,所有應用都是從入口檔案開始的,並且不同應用的入口檔案是類似的。在thinkphp5.0中,出於優化的url訪問原則,還支援通過url重寫隱藏入口檔案,下面以apache為例說明...
TP5 配置檔案修改
template 模板引擎型別 支援 php think 支援擴充套件 type think 模板路徑 view path template 更改預設模板路徑 模板字尾 view suffix htm 更改預設模板字尾 模板檔名分隔符 view depr ds,模板引擎普通標籤開始標記 tpl be...