Thinkphp5笔记九:路由设置,隐藏indx.php

Posted 狂奔的蜗牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp5笔记九:路由设置,隐藏indx.php相关的知识,希望对你有一定的参考价值。

网站根目录下.htaccess

<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

 

 

详细参考手册:http://www.kancloud.cn/manual/thinkphp5/177576

以上是关于Thinkphp5笔记九:路由设置,隐藏indx.php的主要内容,如果未能解决你的问题,请参考以下文章

ThinkPHP5只让路由对index作用,不对admin作用。多模块多入口方式隐藏后台地址及路由冲突解决方案

ThinkPHP5 相关知识重点笔记

ThinkPHP5隐藏index.php在Win7或者Win2008R2下IIS设置

Thinkphp5笔记七:设置错误页面②

Thinkphp5笔记七:设置错误页面①

thinkphp5设置项目为restful风格