加载Web调试工具栏时出错(404:未找到)?

问题描述 投票:0回答:1

嗨,我正在使用Symfony(Swiftmailer)发送电子邮件,我遇到的问题是:

加载Web调试工具栏时发生错误(404:未找到)是否要打开探查器?

Screenshot

电子邮件已成功发送,但问题是我无法呈现任何* .html.twig。


我试过!=解决方案就像命令php bin / console debug:event-dispatcher和.htacces之类的

<IfModule mod_rewrite.c>    
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /app.php [L]
</IfModule>
<IfModule !mod_rewrite.c>
    <IfModule mod_alias.c>
        # When mod_rewrite is not available, we instruct a temporary redirect of
        # the start page 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>
</IfModule>

但是,网上提出的所有解决方案对我都不起作用,谢谢你的帮助。

php apache .htaccess symfony swiftmailer
1个回答
0
投票

当我查看config_dev.yml时,我发现了以下代码:

web_profiler:
    toolbar: true
    intercept_redirects: false

我将工具栏值转为false,它正常工作

web_profiler:
    toolbar: false
    intercept_redirects: false

这个解决方案是否触及其他文件并导致其他问题?

© www.soinside.com 2019 - 2024. All rights reserved.