ThinkPHP去除url中的index.php
http://www.onedayoneclass.com/index.php/Home/Index/getopenId.html
改为:
http://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>