Home > Article > Backend Development > phpstudy Pseudo-static settings for php5.4 and above versions
This article introduces the pseudo-static settings of phpstudy php5.4 and above. It has a certain reference value. Now I share it with you. Friends in need can refer to it
http: //www.thinkphp.cn/topic/35958.html
Default
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
The rule will cause No input file specified.## in apache fastcgi mode
#Modify to
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
It’s OK and the address is rewritten normally.
The above is the detailed content of phpstudy Pseudo-static settings for php5.4 and above versions. For more information, please follow other related articles on the PHP Chinese website!