TP5.1隐藏public/index.php第二种方式

 复制public下的index.php和htaccess文件到根目录

index.php文件直接引入public/index,php即可

TP5.1隐藏public/index.php第二种方式_第1张图片

htaccess文件需要修改

/*
author:咔咔
wechat:fangkangfk
*/


  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

 

你可能感兴趣的:(thinkPHP)