猿问

在codeigniter中设置基本URL

在codeigniter中设置基本URL

我在代码点火器中有这样的目录结构:

 Appsite
    -website       -application        -images

当我在index.php中访问图像时,我使用了: <img src="http://localhost/Appsite/website/images/images.PNG"

并且href是: <li class=""><a href="http://localhos/tAppsite/website/index.php/home/">Home</a></li>

我认为http://localhost在代码点火器中访问图像或库时包含它并不是一个好习惯。所以我试着将$config['base_url'] in config.php 改为$config['base_url'] = "http://".$_SERVER["HTTP_HOST"]."/";

现在我更新了我的图像源和其他库源我删除了localhost和我的目录文件夹的名称:

<img src="images/images.PNG”> <li class=""><a href= <?php echo base_url;?>  /website/index.php/home/">Home</a></li>

但我得到错误。它说没找到物体。有人可以帮帮我吗?


白猪掌柜的
浏览 659回答 3
3回答

长风秋雁

只需这样就可以获得项目的自动正确路径并设置基本URL$site_url = ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https' : 'http';$site_url .= '://' . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '');$site_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);$config['base_url'] = $site_url;
随时随地看视频慕课网APP
我要回答