這是一個很noob問題。我基本上只是試圖運行Silex的「hello world」。我已經安裝在我的目錄中的文件silex.phar,建立.htaccess文件這樣:Silex 500錯誤關閉蝙蝠
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
#RewriteBase /projects/silex/ ###--> commented out because file is in root dir. <--##
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
</IfModule>
,然後在index.php文件運行的這兩行代碼:
require_once __DIR__.'/silex.phar';
$app = new Silex\Application();
我收到500內部服務器錯誤。 (「文件不存在」)
我在Linux上運行php 5.3.8。
有沒有我應該找的PHP設置?
查找到'error.log'爲實際的錯誤信息。 – mario
錯誤是「文件不存在」... –
那麼,因爲只有你知道缺少文件的名稱在這一點上,你必須自己解決這個問題。 – mario