Home > PHP Framework > ThinkPHP > body text

Where to put thinkphp css

藏色散人
Release: 2023-01-13 00:40:31
Original
2931 people have browsed it

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.

Where to put thinkphp css

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">
Copy after login

or

{load file="/static/admin/css/bootstrap.css"}
Copy after login

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路径常量设置
&#39;view_replace_str&#39; => [
            &#39;__CSS__&#39; =>&#39;/static/admin/css&#39;,
            &#39;__JS__&#39;  =>&#39;/static/admin/js&#39;,
            &#39;__IMG__&#39; =>&#39;/static/admin/img&#39;,
            &#39;__FONT__&#39; =>&#39;/static/admin/img&#39;,
    ]`
Copy after login
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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!