我创建了一个登录网站,我的URL变成了这样
http://localhost/koperasi/index.php/cukl/index
如何使我的网址像...
http://localhost/koperasi/index.php/cukl
因为我想制作一个 crud 程序,但我认为我在 url 中有问题
**
我以前的程序使用http://localhost/lee/index.php/buku
,所以我的页面可以在http://localhost/lee/index.php/buku/ubah
上输入 CRUD,
但现在我的新程序 URLhttp://localhost/koperasi/index.php/cukl/index
如何以及在何处更改 URL? 是在控制器中?模型?还是查看?
我认为,首先您必须添加一个htaccess文件,该文件将删除URL中的索引.php。
在 route.php 文件中,您可以定义所需的新 URL。
喜欢这个。
$route['cukl'] = 'cukl/index';