码迷,mamicode.com
首页 > 其他好文 > 详细

访问tp3.2的项目时出现No input file specified.的解决办法

时间:2017-11-17 15:00:58      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:bsp   tee   pre   php教程   3.2   htaccess   style   filename   原来   

解决办法很简单如下:

打开.htaccess 在RewriteRule 后面的index.php教程后面添加一个“?”

原来的代码如下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

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

 

修改之后的代码如下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

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

完美地解决了问题

访问tp3.2的项目时出现No input file specified.的解决办法

标签:bsp   tee   pre   php教程   3.2   htaccess   style   filename   原来   

原文地址:http://www.cnblogs.com/cxint/p/7851421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!