CI中如何设置静态文件路径

WBOY
Release: 2016-06-06 20:47:18
Original
1361 people have browsed it

我在view中的文件的header是这样写

<code class="lang-php"><base href="<?php%20echo%20base_url();?>">
<title><?php echo $title ?></title>
<link rel="stylesheet" href="static/css/style.css">
</code>
Copy after login
Copy after login

文件路径是对的,但是404了,本地服务器是apache,是否要通过修改htaccess还是说路由上面做手脚

回复内容:

我在view中的文件的header是这样写

<code class="lang-php"><base href="<?php%20echo%20base_url();?>">
<title><?php echo $title ?></title>
<link rel="stylesheet" href="static/css/style.css">
</code>
Copy after login
Copy after login

文件路径是对的,但是404了,本地服务器是apache,是否要通过修改htaccess还是说路由上面做手脚

这样组织是没有问题的,通过 base_url() 使用绝对路径。

CI项目的.htaccess的主要目的是将所有请求都送到 index.php 进行处理,即单入口理念。

  1. 检查一下 base_url 设置的值,后面有没有那个 / 。
  2. 根据文档看下.htaccess有没有写错。 http://codeigniter.org.cn/user_guide/general/urls.html 我更新过这个页面上的 .htaccess 的写法两次,你再仔细看下。

是为了引入css文件吗?如果是这样的话可以这样写:

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!