ThinkPHP如何去除url中的index.php

https://www.onedayoneclass.com/index.php/Home/Index/getopenId.html

改为:

https://www.onedayoneclass.com/Home/Index/getopenId.html

 

htaccess文件必须放到跟目录下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

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