我对Codeigniter和Grocery CRUD完全陌生,但是我非常喜欢这个概念,因此我试图使用这些框架来制作我的小应用程序。
因此,现在登录系统正在运行,并且在“主页”页面上登录后,我看到了我的Grocery CRUD表,它已经填满,到目前为止还可以...
我的问题是,我不能使用任何功能:添加,编辑,查看,搜索不起作用,它给我404错误,例如,这是一个编辑链接:
http://subdomain.mysite.com/index.php/home/edit/1
该网站位于一个子域上,我不知道是否可能相关。
这是我的base_url:
$config['base_url'] = '/';
如果我将其更改为“,则base_url();方法不能为我提供正确的值,我认为这是因为子域。
这是我完整的“主页”视图:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My system</title>
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>bootstrap/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="page-header text-center">My system</h1>
<div class="row">
<div class="container text-right">
<?php
$user = $this->session->userdata('user');
extract($user);
?>
<p class="d-inline"><b>Logged in as:</b> <i><?php echo $fname; ?></i></p>
</div>
<div class="container">
<?php
$crud = new grocery_CRUD();
$this->grocery_crud->set_table('mobil_table');
$this->grocery_crud->columns('mobile_number', 'package_name', 'package_date');
$output = $this->grocery_crud->render();
$this->load->view('mobil.php', $output); ?>
<a href="<?php echo base_url(); ?>index.php/user/logout" class="btn btn-danger">Logout</a>
</div>
</div>
</div>
</body>
</html>
我的路线:
$route['default_controller'] = 'user';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['home'] = 'user/home';
要使这些功能在此页面上起作用,我应该纠正什么?谢谢:)
答案 0 :(得分:1)
您必须通过控制器/方法访问编辑页面
如果您的控制器是用户,并且具有参数名$ id的函数编辑,则您的访问URL将是:
:s/\%u3000/\%ua0/g
:s/\%u3000/\%xa0/g
:s/\%u3000/\xa0/g
或为其定义新路线:
http://subdomain.mysite.com/index.php/user/edit/1
或更清楚地
$route['home/edit'] = 'user/edit';
但是您可以按照以下步骤获取干净的网址:
首先使用以下代码在您的网站根文件夹中创建一个.htaccess文件:
$route['home/edit/(:num)'] = 'user/edit/$1';
更改之后:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
和
$config['base_url'] = 'http://subdomain.mysite.com/';
完成上述步骤后,您可以在URL中使用没有index.php的URL
例如:
$config['index_page'] = '';
将成为
http://subdomain.mysite.com/index.php/user/edit/1