网站首页 think技术
设置路由模式
发布时间:1970-01-01 00:00查看次数:2605
接着我们设置路由模式
//PATHWIHTD 重写模式 这样U生成的地址不带index.php
//开启路由
'URL_ROUTER_ON'=>true,
//路由模式为重写模式
'URL_MODEL' => '2',
---------------------------
去除路由中index
.htaccess
内容如下 (使用的是正则匹配)
---------------------------
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
---------------------------
设置完成以后我们访问的路由地址直接域名即可!
关键字词:设置路由模式