这是一个非常的菜鸟问题。我基本上只是试图运行Silex的“hello world”。我在我的目录中安装了silex.phar文件,然后设置.htaccess文件:
<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设置吗?
答案 0 :(得分:1)
原来有一个叫做phar-stub bug的bug。它会告诉你无法找到Silex \ Application。解决方法是使用以下包含行:
require_once 'phar://'.__DIR__.'/silex.phar/autoload.php';