2017-05-05 55 views
-1

這是我的目錄結構PHP Slim framwork:沒有指定輸入文件?

 
/path/www.mysite.com/ 
    public_html/ 
     api/ 
      v1/ 
       index.php 
       .htaccess 


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

問題:
,當我瀏覽這個網址:http://technobuff.in/api/v1/hello這是行不通的。它顯示'沒有指定輸入文件'。 但如果我使用這個:http://technobuff.in/api/v1/index.php/hello這工作正常。

我爲我的API開發使用Slim Framework。在本地主機上,這是行之有效的,請幫忙解釋一下。 在此先感謝。

+0

看一眼..內容注意到你有不同的[薄型框架的.htaccess(https://github.com/slimphp/Slim /blob/3.x/example/.htaccess)。 –

+0

@BagusTesa感謝它爲我工作。 – guptaatul91

+0

很高興你把它整理出來。 –

回答

相關問題