各位大家好,我今天在学习Think PHP5 的时候在隐藏入口文件中的一节课中发现了一个问题,这个问题已经困扰了我很久了。
今天我终于吧这个问题解决了。首先需要说明的是 手册上的步骤是完全正确的。
那么为什么我们按照步骤做出来了但是没有效果呢?那么您不妨看一下下面的步骤!!
手册中给出的.htaccess文件内容为:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
如果您要是在phpstudy和linux下配置.htaccess文件的话 那么将这个文件的内容换成:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>