1. 程式人生 > >phpstudy php5.4以上版本偽靜態設置 thinkphp

phpstudy php5.4以上版本偽靜態設置 thinkphp

lena http path spec module file 重寫 body mod

http://www.thinkphp.cn/topic/35958.html

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

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

默認的

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

規則在apache fastcgi模式下會導致No input file specified.

修改成

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

就OK,地址正常重寫。

phpstudy php5.4以上版本偽靜態設置 thinkphp