ci如何修改地址

WBOY
Release: 2016-06-06 20:12:46
Original
1040 people have browsed it

ci如何修改地址

ci如何修改地址
当我点击首页时候 我想把那控制器和方法名去掉 但是我设置了默认路由 第一次 可以 以后点首页都会显示 怎么隐藏呢

回复内容:

ci如何修改地址

ci如何修改地址
当我点击首页时候 我想把那控制器和方法名去掉 但是我设置了默认路由 第一次 可以 以后点首页都会显示 怎么隐藏呢

手动写地址了

定义默认控制器
CodeIgniter 可以设置一个默认的控制器,当 URI 没有分段参数时加载,例如当用户直接访问你网站的首页时。 打开 application/config/routes.php 文件,通过下面的参数指定一个默认的控制器:

<code>$route['default_controller'] = 'blog';
</code>
Copy after login

其中,“Blog”是你想加载的控制器类名,如果你现在通过不带任何参数的 index.php 访问你的站点,你将看到你的“Hello World”消息。

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template