我正在使用 hmvc 创建一个注册页面:- 现在我在 url 中输入:-http://localhost/CI/index.php/user/registration
用户是模块名称
控制器:-registration.php
<?php
class Registration extends MX_Controller{
function index() {
$this->load->view('homepage');
}
function register(){
$this->load->view('registrationPage');
}
}
?>
查看:-homepage.php
<html>
<body>
<a href="registration/register">register</a>
</body>
</html>
问题是在我的网址中我必须输入http://localhost/CI/index.php/user/registration/register
才能进入注册页面。
我想http://localhost/CI/index.php/user/register
我们怎么能做到这一点。?设置 base_url 不起作用,设置路由 ia 也不起作用。这是否可以转到任何页面而不在 url 中提供模块名称..?