网址前的页面/更改网址

时间:2018-08-23 08:50:01

标签: php codeigniter url

我创建了一个登录网站,我的URL变成了这样

http://localhost/koperasi/index.php/cukl/index


如何使我的网址像...

http://localhost/koperasi/index.php/cukl



因为我想编写一个粗糙的程序,但是我认为我的网址有问题


**
我以前的程序使用http://localhost/lee/index.php/buku
,因此我的页面可以在http://localhost/lee/index.php/buku/ubah上输入CRUD

但是现在我较新的程序网址是http://localhost/koperasi/index.php/cukl/index

如何以及在何处更改网址?在控制器中?模型?或查看?

1 个答案:

答案 0 :(得分:0)

我认为,首先您必须添加一个htaccess文件,该文件将删除URL中的index.php。

在route.php文件中,您可以定义所需的新URL。

喜欢这个。

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="plunker">
  <table ng-controller="MainCtrl" border="1" cellspacing="0">
    <tr ng-repeat="i in names">
      <td data-ng-if="!i.show" data-ng-init="counter.index = counter.index + 1; serialnumber = counter.index">{{serialnumber}}</td>
      <td colspan="2" data-ng-if="!i.show">{{i.name}}</td>
      <td data-ng-if="!i.show">{{i.address}}</td>
      <td data-ng-if="!i.show">{{i.phno}}</td>
      <td data-ng-if="i.show" colspan="5">{{i.label}}</td>
    </tr>
  </table>
</div>