我正在Linux Mint(基于Ubuntu 18.04),apache2和php 7.2下工作
当我生成一个Symfony 3项目时,会生成工具栏,但是使用Symfony 4.2.5时,即使进行了费事的安装,调试工具栏也不会显示。
我尝试了以下解决方案:
composer require symfony/apache-pack
chmod -R 777 var/cache
和
[sudo] a2enmod rewrite
[sudo] service apache2 restart
并更改了我的.htaccess:
DirectoryIndex index.php
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteCond %{HTTP:Authorization} .
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ - [L]
RewriteRule ^ %{ENV:BASE}/index.php [L]
</IfModule>
<IfModule !mod_rewrite.c>
<IfModule mod_alias.c>
RedirectMatch 307 ^/$ /index.php/
</IfModule>
</IfModule>
但是对于工具栏,我仍然收到与页面末尾的相同消息:
加载Web调试工具栏时发生错误。
答案 0 :(得分:0)
我在Windows下工作,遇到了类似的问题,在我的情况下,即使在安装apache-pack之后或之前,甚至在安装了探查器之后,.htaccess文件也不存在于公用文件夹中,所以我只是复制/粘贴来自https://ourcodeworld.com/articles/read/793/how-to-configure-a-virtualhost-in-xampp-3-3-2-for-a-symfony-4-project这样的其他网站的htaccess代码...希望对您有所帮助