2

我是 Symfony 的初学者,我很难让它工作。我在我的机器(ubuntu)上运行 apache 2。看来我可以通过 url 访问配置:localhost/Symfony/web/config.php

另外,我可以通过这个 url 访问主页:localhost/Symfony/web/app_dev.php(我看到的第一个消息是:加载 Web 调试工具栏时发生错误(404:未找到)。你想要打开探查器?)。我唯一能回应的是取消(如果你尝试接受,我会收到 404 未找到)。

在那之后,没有任何效果。即便是 。始终找不到 404。

正如我所发现的,这可能是缓存的问题,也可能是 apache 配置的问题。但是无论我尝试什么都不能解决问题(其他人在stackoverflow中提出了类似的问题,但对我来说没有任何解决方法)。

有人知道吗?提前致谢。

4

2 回答 2

4

我以前也有这个问题,请看一下我的配置并尝试一下

在我的 .htaccess 里面:

大家好,我也遇到了这个问题。似乎“股票” .htaccess 是问题所在。我已经在我的环境中解决了这个问题,这是我的 .htaccess 和注释:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app_dev.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L]    ##### this is the part that you should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule .? - [L]
    RewriteRule .? %{ENV:BASE}/app_dev.php [L]        ##### this is the part that you should tweak, have the .htaccess point the request to app_dev.php, since the routing.yml is empty initially
</IfModule>

<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        # When mod_rewrite is not available, we instruct a temporary redirect of
        # the startpage to the front controller explicitly so that the website
        # and the generated links can still be used.
        RedirectMatch 302 ^/$ /app.php/
        # RedirectTemp cannot be used instead
    </IfModule>

在 /etc/apache2/sites-available 中的“symfony”条目中:

<VirtualHost 127.0.1.15>
    ServerAdmin webmaster@localhost
    ServerName symfony
    DocumentRoot /var/www/Symfony/web
DirectoryIndex app.php
    <Directory /var/www/Symfony/web>
        Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
于 2013-06-04T10:17:42.177 回答
0

Maby 看看你.htaccess或你的 appache 设置 ( mod_rewrite)

看看:Symfony 404 错误

于 2013-03-25T09:45:38.283 回答