路由的作用
就是为了seo方便和方便大家记忆
先讲两个隐藏信息 ,一个是隐藏模块名称,一个是隐藏入口页
- 隐藏模块名称
- 实现index.php只能去前台,admin.php只能去后台
- 在public目录下,新建admin.php,把默认的index.php文件复制到admin.php
- 编写admin.php
<?php
// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
define('BIND_MODULE','admin');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';
- 隐藏入口文件,这里只能隐藏一个,而且已经默认实现了,就是隐藏index.php
–. 首先开启apache的重写功能,nigix的下一次专门写一次
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>
–. 修改public里面的 .htaccess 文件,这里保持不变就行
路由器的三种模式
普通模式
关闭路由,直接用PATH_INFO 模式,就是必须用全部路径访问
去配置文件中设置
'url_route_on' => false,
'url_route_must' => false,
混合模式
开启路由,可以使用PATH_INFO 模式也可以使用路由模式,这个是默认
去配置文件中设置
'url_route_on' => true,
'url_route_must' => false,
强制模式
开启路由,并且只能使用路由模式访问
去配置文件中设置
'url_route_on' => true,
'url_route_must' => true,