" rel="sty-6ren">
gpt4 book ai didi

php - Bootstrap 样式不适用于 codeigniter

转载 作者:行者123 更新时间:2023-11-28 17:11:15 25 4
gpt4 key购买 nike

bootstrap 文件夹被放置在根文件夹中。样式像这样加载到 View 文件的标题部分。但它没有用。请帮忙解决这个问题。

    <link href="<?php echo base_url('bootstrap/css/bootstrap.min.css');?>" rel="stylesheet">
<link href="<?php echo base_url('bootstrap/css/mystylesheet.css'); ?>" rel="stylesheet">

<script src="<?php echo base_url('bootstrap/js/jquery.min.js'); ?>"></script>
<script src="<?php echo base_url('bootstrap/js/bootstrap.min.js'); ?>"></script>

<title>::CMSys || Add Division::</title>
</head>

最佳答案

你忘记了type="text/css"

<link type="text/css" href="<?php echo base_url('bootstrap/css/bootstrap.min.css');?>" rel="stylesheet">
<link type="text/css" href="<?php echo base_url('bootstrap/css/mystylesheet.css'); ?>" rel="stylesheet">

确保您已经在应用程序 config.php 中设置了您的基本 url

Make sure you have the bootstrap folder out side of the application folder.

$config['base_url'] = 'http://localhost/yourproject/';

或者类似的东西

$config['base_url'] = 'http://www.yourdomain.com/';

并自动加载 url 助手

$autoload['helper'] = array('url');

如果不放置在controller的构造区。 http://www.codeigniter.com/user_guide/general/controllers.html#class-constructors

并确保您已按照此处的说明正确命名您的类和文件名

  1. > http://www.codeigniter.com/user_guide/general/styleguide.html#file-naming
  2. > http://www.codeigniter.com/user_guide/general/styleguide.html#class-and-method-naming

您可能需要主目录中的 htaccess 文件尝试其中的一些 https://github.com/wolfgang1983/htaccess_for_codeigniter

关于php - Bootstrap 样式不适用于 codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45646988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com