1. 程式人生 > >thinkPHP5隱藏入口檔案index.php後 讀取不到資源問題

thinkPHP5隱藏入口檔案index.php後 讀取不到資源問題

這個問題弄了一下午

<link rel="stylesheet" href="../../../public/static/css/information_content.css" />

在隱藏入口檔案後,這種方式會不成功 ,所以我們需要在配置檔案config.php上新增
'view_replace_str'       => [
       "__IMG__" =>'/SchoolWeb/public/static/css',
    ],

把link換成
<link rel="stylesheet" type="text/css" href="__CSS__/index_content.css" />

IMG資源和JS資源讀取不到 也照這種方式可以解決