Home > Article > PHP Framework > Where to put thinkphp css
thinkphp's css is placed in the "/public/static" folder; for example, when using the thinkphp5 template, you can place the css and other effect files that need to be introduced directly under "/public/static/" Just go to the corresponding directory.
The operating environment of this tutorial: windows7 system, thinkphp v5.0&&css3 version, DELL G3 computer.
Related recommendations: thinkphp
ThinkPHP was born to simplify enterprise-level application development and agile WEB application development. ThinkPHP can support server environments such as windows/Unix/Linux.
In the thinkphp5 framework, static files such as images and css are specified to be placed in the /public/static
folder.
When using the template of thinkphp5, you can directly place the css and other effect files that need to be introduced in the corresponding directory under /public/static/, and use them directly when using the template file
<link href="/static/admin/css/style.min.css?v=4.1.0" rel="stylesheet">
or
{load file="/static/admin/css/bootstrap.css"}
and other methods are introduced, but if the directory where these files are located is changed, a lot of places in the code will be changed.
Here you can add
//模板引入js,css,img路径常量设置 'view_replace_str' => [ '__CSS__' =>'/static/admin/css', '__JS__' =>'/static/admin/js', '__IMG__' =>'/static/admin/img', '__FONT__' =>'/static/admin/img', ]`directly to the config.php file under the application configuration file (/application/admin)
The above is the detailed content of Where to put thinkphp css. For more information, please follow other related articles on the PHP Chinese website!