1

我在 codeigniter 中的 base_url 上有问题。我用谷歌搜索找到解决方案,但没有运气。我希望这个论坛可以帮助找到解决方案。

我的问题是 base_url 没有正确翻译。

这是我的 config.php

$config['base_url'] = 'http://192.168.1.181/asset_apps';

$config['index_page'] = '';

$config['uri_protocol'] = 'AUTO';

这是我的观点:


<!DOCTYPE html>
<html>


 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <!-- Meta, title, CSS, favicons, etc. -->
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">

   <title>Login To Asset Management</title>

  <!-- Bootstrap core CSS -->

  <link href="<? echo base_url('gentelella/vendors/bootstrap/dist/css/bootstrap.min.css') ?>" rel="stylesheet">

  <link href="<? echo base_url('gentelella/vendors/font-awesome/css/font-awesome.min.css') ?>" rel="stylesheet">
  <link href="<? echo base_url('gentelella/documentation/css/animate.min.css') ?>" rel="stylesheet">

  <!-- Custom styling plus plugins -->
  <link href="<? echo base_url('gentelella/production/css/custom.css') ?>" rel="stylesheet">
  <link href="<? echo base_url('gentelella/vendors/iCheck/skins/flat/green.css') ?>" rel="stylesheet">


  <script src="<? echo base_url('gentelella/vendors/jquery/dist/jquery.min.js') ?>"></script>

 </head>
 <body style="background:#F7F7F7;">
    <div class="">
      <a class="hiddenanchor" id="tologin"></a>

      <div id="wrapper">
        <div id="login" class="animate form">
            <section class="login_content">
                <?php echo validation_errors(); ?>
               <!--  <?php  //echo form_open('application/controllers/verifylogin'); ?> -->
           <form class="form-default" method="POST" action="<? echo base_url('verifylogin'); ?>">  
              <h1>Login Form</h1>

                  <div>
                    <input type="text" class="form-control" placeholder="Username" id="username" name="username" required=""/>  
                  </div>
                  <div>
                    <input type="password" class="form-control" placeholder="Password" id="password" name="password" required=""/>  
                  </div>

                       <!---<a class="btn btn-default submit" type ="submit" value ="Login" href="<?php //echo site_url('verifylogin') ?>">Log In</a>  -->
                     <a><input class = "btn btn-default" align="center" type = "submit" value = "Login"></a>

                  <div class="clearfix"></div>
                      <br />
                    <div>
                      <h1><i class="fa fa-paw" style="font-size: 26px;"></i> Asset Management </h1>
                      <p>©2016 IT Department</p>
                  </div>
                       <!--<label for="username">Username:</label>
                       <input type="text" size="20" id="username" name="username"/>
                       <br/>
                       <label for="password">Password:</label>
                       <input type="password" size="20" id="passowrd" name="password"/>
                       <br/>
                       input type=<"submit" value="Login"/> -->
            </form>


        </section>           
        </div>

      </div>              
    </div>     
 </body>
</html>

但是当我在浏览器上运行它并查看页面源代码时,base_url 没有被翻译或更改为我在 config.xml 中设置的 base_url。

当我点击查看页面源错误的链接时:

禁止的

您无权访问此服务器上的 /asset_apps/<。

和这样的工具栏上的链接:

http://192.168.1.181/asset_apps/%3C?%20echo%20base_url(%27gentelella/vendors/bootstrap/dist/css/bootstrap.min.css%27)%20?%3E

请帮忙。

先感谢您。

此致,

4

3 回答 3

0

首先php标签应该是这样<?php echo base_url(); ?>而不是这样<? echo base_url(); ?>

其次,你必须确保你已经加载了url helper

您可以通过编辑配置目录中的 autoload.php 来自动加载 url 帮助程序,如下所示

$autoload['helper'] = array('url','form');

希望这会帮助你。

于 2016-08-23T09:31:34.810 回答
0

为了使用 base_url(),您必须首先加载 URL Helper。这可以在 application/config/autoload.php 中完成(在第 67 行或附近):

$autoload['helper'] = array('url');

Or, manually:

$this->load->helper('url');
于 2016-08-23T09:32:21.817 回答
0

您是否检查过 PHP 是否允许使用短标签?

您可以使用完整的标签,因此将来不会有问题

<?php echo base_url('url'); ?>

/还要在下面添加最后一个额外的

$config['base_url'] = 'http://192.168.1.181/asset_apps/';

检查此短标签

于 2016-08-23T09:23:33.953 回答