标签: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