js,css,图像未加载到codeigniter中

时间:2017-03-21 12:09:30

标签: javascript php css codeigniter

我在CodeIgnitor中有一个项目。我从托管服务器下载它并尝试在localhost上运行它。但很奇怪,主页没有加载。我检查了图像,css和js在各自的文件夹中,但我无法从localhost访问。当我在浏览器中复制并粘贴图片url或js url来运行时,它把我带到谷歌地图网址。

我无法解决问题,无论是 public async Task<DataContext> GetDataAsync() { DataContext data = new DataContext(); //crate individual tasks var test1 = _dac.GetProductsAsync(); var test2 = _dac.GetProducts2Async(); var test3 = _dac.GetProducts3Async(); var test4 = _dac.GetProducts4Async(); var test5 = _dac.GetProducts5Async(); //Execute all tasks at once with WhenAll function await Task.WhenAll(task1, task2, task3, task4, task5); //This statement is executed only after all the tasks are finished return data; } 还是其他一些事情阻止我在localhost上加载图片。

2 个答案:

答案 0 :(得分:0)

尝试在EX ::

的图像/文件路径中使用base_url
<img src="<?php echo base_url(); ?>assets/pages/img/logo.png">

<script src="<?php echo base_url(); ?>assets/pages/js/example.js"> </script>

您需要在配置文件中加载URL帮助程序才能使用base_url

答案 1 :(得分:0)

我认为这可能是这3件事中的一件:

  1. 配置
  2. HTML标记
  3. 目录权限
  4. 数目:

    1. (config / config.php)将有效值设置为$ config ['base_url']键。
    2. 首先尝试使用'纯'HTML加载资源。如果它加载,那么你使用错误的路径 - 稍后动态修复它。
    3. 我不知道你是否正在使用像系统或Windows这样的unix。无论如何目录权限有时会导致这种问题。要修复,您需要根据您的系统申请权限。
    4. 我希望它有效。如果你确定这不是这三个问题之一,请发表评论。