在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>
但我得到错误。它说没找到物体。有人可以帮帮我吗?
长风秋雁