gpt4 book ai didi

php - Symfony 总是出现 404 错误

转载 作者:行者123 更新时间:2023-12-04 18:28:34 25 4
gpt4 key购买 nike

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

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

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

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

有人知道吗?提前致谢。

最佳答案

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

在我的 .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>

关于php - Symfony 总是出现 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15611635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com