tp5链接去掉index.php

将http://hehe.com/index.php/index/index/index改为http://hehe.com/index/index/index
到public目录下将.htaccess文件修改为如下所示:

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

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

你可能感兴趣的:(PHP)