为代码点火器插入标题链接

时间:2016-03-29 18:52:42

标签: codeigniter

新代码点火器。我需要插入一个链接去我们的博客网站。我在header.php文件中找到了该行,但不确定是否插入了链接。

          <li class="gnb"><a class="mn-stores" href="blogs"><?php echo "Blogs";?></a></li>

3 个答案:

答案 0 :(得分:0)

您需要使用博客网址更改href属性。

在您的情况下,它应该如下所示:

以下是W3

中的一些文档
<?php
  foreach($imagesArray['body'] as $image){
    echo "path is : ".$image->path;
  }
?>

点击“博客”,它应该重定向到您的博客。如果这不是你要求的,我不明白这个问题,对不起

答案 1 :(得分:0)

请尝试使用此功能,

<a class="mn-stores" href="http://blog.designtrades.org/" target="_blank">Blogs</a>

如果它不起作用,请提供您收到404错误的页面的网址。谢谢。

答案 2 :(得分:0)

当您需要转到自动加载url helper

<li class="gnb">
<a class="mn-stores" href="<?php echo base_url('blog');?>">Blogs</a>
</li>

使用codeIgniter锚

<li class="gnb">
<?php echo anchor('blog', array('class' => 'mn-stores'));?>
</li>

您可能需要在application / config / routes.php上配置路由

http://www.codeigniter.com/user_guide/general/routing.html

在codeigniter 3版本中,建议您设置基本网址。

$config['base_url'] = 'http://localhost/project/';

另一件好事是使用url helper / anchor

的codeigniter锚点