我在 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/<。
和这样的工具栏上的链接:
请帮忙。
先感谢您。
此致,
滇