网址前的页面/更改网址

  • 本文关键字: php codeigniter url
  • 更新时间 :
  • 英文 :


我创建了一个登录网站,我的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';

相关内容

  • 没有找到相关文章

最新更新