CodeIgniter css样式不显示有关问题
CodeIgniter css样式不显示问题
这是我的引用css的代码
<br /><!DOCTYPE html><br /><html lang="en"><br /><head><br /> <title><?php echo $title ?> - News</title><br /><style type="text/css"><br /><link type="text/css" rel="stylesheet" href="<?=$this->config->item('base_url');?>css/yangshi.css" /><br /></style><br /></head><br /><body><br /> <h1 id="News">News</h1><br />
这是我的config.php的文件
<br />$config['base_url'] = 'http://127.0.0.1/myPhpStudy/index.php/';<br />
这是生成页面后的源代码,点击href连接显示404,我怀疑可能路径错误,可是我不知道哪里错了
<!DOCTYPE html><br /><html lang="en"><br /><head><br /> <title>Create a news item - News</title><br /><style type="text/css"><br /><link type="text/css" rel="stylesheet" href="http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css" /><br /></style><br /></head><br /><body><br /> <h1 id="News">News</h1><br /><br /><h2 id="Create-nbsp-a-nbsp-news-nbsp-item">Create a news item</h2> <br /> <br /> <br /> <br /><form action="http://127.0.0.1/myPhpStudy/index.php/news/create" method="post" accept-charset="utf-8"> <br /> <br /> <label for="title">Title</label> <br /> <input type="input" name="title" /><br /><br /><br /> <br /> <label for="text">Text</label> <br /> <textarea name="text"></textarea><br /> <br /> <br/><br /> <br /> <input type="submit" name="submit" value="Create news item" /> <br /><span class="feifei">wsdfsfdsa</span><br /></body> <br /></html>
我的css文件夹和header.php页面都是在news文件夹下面的,不知道到底哪里错了,请大牛指点啊,本人是刚刚接触php的
------解决方案--------------------
http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css" />
这是有效地路径吗?
难道 index.php 是目录?
------解决方案--------------------
base_url("css/yangshi.css");?>" />试试?
------解决方案--------------------
href="=base_url("css/yangshi.css");?>"这个在页面上打印出来的连接发出来看看
------解决方案--------------------
dirname($this->config->item('base_url'));?>css/yangshi.css" />
------解决方案--------------------
<link type="text/css" rel="stylesheet" href="<?=dirname($this->config->item('base_url'));?>/css/yangshi.css" />
------解决方案--------------------
贴出的的目录结构
并指出你的文件的位置
------解决方案--------------------
在网站直接输入http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css能访问吗?是不是css这个目录限制访问的?
------解决方案--------------------
执行的文件为 myPhpStudy/index.php
样式表在 myPhpStudy/application/css 中
所以样式表的路径应为
dirname($this->config->item('base_url')) . '/application/css/'

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are two common ways to hide rows in XML: Use the display property in CSS to set to none Use XSLT to skip hidden rows via conditional copying

When converting XML to PDF on mobile phone, whether the format is chaotic depends on: 1. The quality of the conversion tool; 2. XML structure and content; 3. Style sheet writing. Specifically, poor conversion tools, messy XML structures, or wrong XSLT code can lead to malformation.

XML is widely used to build and manage user interfaces. It defines and displays the interface content through the following steps: Define interface elements: XML uses tags to define interface elements and their properties. Building a hierarchy: XML organizes interface elements according to hierarchical relationships to form a tree structure. Using Stylesheets: Developers use stylesheet languages such as CSS or XSL to specify the visual appearance and behavior of elements. Rendering process: A browser or application uses an XML parser and stylesheet to parse an XML file and render interface elements to make it visible on the screen.

How to achieve the playback of pictures like videos? Many times, we need to implement similar video player functions, but the playback content is a sequence of images. direct...

How to achieve upward scrolling loading similar to WeChat chat records? When developing applications similar to WeChat chat records, a common question is how to...

How to realize the function of playing pictures like videos? Many times, we need to achieve similar video playback effects in the application, but the playback content is not...

Using react-transition-group in React to achieve confusion about closely following transition animations. In React projects, many developers will choose to use react-transition-group library to...

Regarding the problem of inconsistent width of emsp spaces in HTML and Chinese characters in many web tutorials, it is mentioned that occupying the width of a Chinese character, but the actual situation is not...
