首先隐藏index.php
修改配置文件ThinkPHP/Conf/convention.php:
'URL_CASE_INSENSITIVE' => true, // 默认false 表示URL区分大小写 true则表示不区分大小写
'URL_MODEL' => 2, // URL访问模式,可选参数0、1、2、3,代表以下四种模式:
// 0 (普通模式); 1 (PATHINFO 模式); 2 (REWRITE 模式); 3 (兼容模式) 默认为PATHINFO 模式
然后配置Nginx
location / {
try_files $uri $uri/ /index.php?s=$uri&$args;
}
意思是:如果第一个 uri不存在,就访问 uri/;如果 uri/还不存在,访问/index.php?s= uri&$args。可以后面跟很多个。
Apache这样配置 ,在根目录新建.htaccess文件:
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
其次隐藏Home模块
在公共目录下面的Common/Conf/config.php里面配置如下代码实现隐藏Home目录
<?php
return array(
//'配置项'=>'配置值'
'MODULE_ALLOW_LIST' => array('Home', 'Admin'),
'DEFAULT_MODULE' => 'Home',
);