我是Symfony的初学者,我遇到麻烦使它成功。我在我的机器上运行apache 2(ubuntu)。似乎我可以通过url访问配置: 本地主机/ Symfony的/网络/ config.php中
另外,我可以通过此网址访问主页: 本地主机/ Symfony的/ WEB / app_dev.php (我看到的第一个消息告诉:加载Web调试工具栏时出错(404:Not Found)。你想打开探查器吗?)。我唯一能回应的就是取消(如果你试着接受,我会找到404)。
之后,没有任何作用。即便是 。始终没有找到404。
正如我所发现的,它可能是缓存问题,也可能是apache配置问题。但无论我尝试什么都无法解决问题(其他人在stackoverflow中问类似,但没有什么能解决我的问题)。
有人知道吗?提前谢谢。
答案 0 :(得分: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>
答案 1 :(得分:0)
宝贝看看你的.htaccess
或你的apache设置(mod_rewrite
)