Home > Backend Development > PHP Tutorial > CodeIgniter css样式不显示问题

CodeIgniter css样式不显示问题

WBOY
Release: 2016-06-23 13:57:40
Original
1117 people have browsed it

这是我的引用css的代码

<!DOCTYPE html><html lang="en"><head>	<title><?php echo $title ?> - News</title><style type="text/css"><link type="text/css" rel="stylesheet" href="<?=$this->config->item('base_url');?>css/yangshi.css" /></style></head><body>	<h1>News</h1>
Copy after login

这是我的config.php的文件
$config['base_url']	= 'http://127.0.0.1/myPhpStudy/index.php/';
Copy after login

这是生成页面后的源代码,点击href连接显示404,我怀疑可能路径错误,可是我不知道哪里错了
    <!DOCTYPE html><html lang="en"><head>	<title>Create a news item - News</title><style type="text/css"><link type="text/css" rel="stylesheet" href="http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css" /></style></head><body>	<h1>News</h1><h2>Create a news item</h2>        <form action="http://127.0.0.1/myPhpStudy/index.php/news/create" method="post" accept-charset="utf-8">           <label for="title">Title</label>      <input type="input" name="title" /><br /><br />         <label for="text">Text</label>      <textarea name="text"></textarea><br />      <br/>            <input type="submit" name="submit" value="Create news item" />  <span class="feifei">wsdfsfdsa</span></body>  </html>  
Copy after login

我的css文件夹和header.php页面都是在news文件夹下面的,不知道到底哪里错了,请大牛指点啊,本人是刚刚接触php的


回复讨论(解决方案)


这是有效地路径吗?
难道 index.php 是目录?

$config['base_url'] = 'http://127.0.0.1/myPhpStudy/index.php/';
是路径

" />试试?

" />试试?


不行啊

href=""这个在页面上打印出来的连接发出来看看

href=""这个在页面上打印出来的连接发出来看看


href="http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css" />

<link type="text/css" rel="stylesheet" href="<?=dirname($this->config->item('base_url'));?>/css/yangshi.css" />
Copy after login
Copy after login

<link type="text/css" rel="stylesheet" href="<?=dirname($this->config->item('base_url'));?>/css/yangshi.css" />
Copy after login
Copy after login


这个也不行啊

贴出的的目录结构
并指出你的文件的位置

在网站直接输入http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css能访问吗?是不是css这个目录限制访问的?

在网站直接输入http://127.0.0.1/myPhpStudy/index.php/css/yangshi.css能访问吗?是不是css这个目录限制访问的?


显示404 Page Not Found

贴出的的目录结构
并指出你的文件的位置

执行的文件为 myPhpStudy/index.php
样式表在 myPhpStudy/application/css 中
所以样式表的路径应为
dirname($this->config->item('base_url')) . '/application/css/'

执行的文件为 myPhpStudy/index.php
样式表在 myPhpStudy/application/css 中
所以样式表的路径应为
dirname($this->config->item('base_url')) . '/application/css/'


这个也不行,这个连接点开后是404 Page Not Found

我在myPhpStudy下面加上.htaccess文件,然后访问就会出现Internal Server Error
RewriteEngine On
RewriteEngine on  
RewriteCond $1 !^(index\.php|images|css|robots\.txt)  
RewriteRule ^(.*)$ /index.php/$1 [L]

谢谢你们,问题已经解决了,是wampserver下面的一个配置文件出错了

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