“未指定输入文件”服务器上出错

时间:2014-06-30 05:02:54

标签: php apache .htaccess

我刚将我的网站上传到我的godaddy服务器 但有No input file specified.的错误
我谷歌这很多任何理由都必须是.htaccess文件代码。

我不知道它是什么。这个怎么运作。这是我的htaccess文件代码

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

我怎么能解决这个问题? PLZ帮助我对这种类型的编码不熟悉。任何帮助表示赞赏。 如果可能的话,链接最简单的.htaccess编码教程......

1 个答案:

答案 0 :(得分:-1)

使用此

<IfModule mod_rewrite.c>

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

</IfModule>
相关问题