TP5隐藏入口文件

为什么要隐藏入口文件

使页面url美观,方便搜索引擎收录

具体实现
在index.php同级目录下新建.htaccess(默认自带)

添加如下内容


  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  #RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

你可能感兴趣的:(ThinkPHP5)