【问题标题】:Symfony 4, access to public/index.php OK in dev mode, access KO (404) in prod modeSymfony 4,在 dev 模式下访问 public/index.php OK,在 prod 模式下访问 KO (404)
【发布时间】:2019-01-29 15:00:41
【问题描述】:

在开发模式下,我使用 apache 服务器,我通过 localhost/myApp/public/index.php 进入我的应用程序。我想用我的 symfony 4 应用程序测试 prod mod。

  • 我将 APP_ENV 变量更改为“prod”(在 .env 文件中)
  • 我通过命令composer install --no-dev安装了composer包

但是现在,当我打开浏览器并转到 localhost/myApp/public/index.php 时,我得到一个 symfony 404 错误页面:

apache configuratin 看起来不错(我可以在开发模式下毫无问题地访问该网站,我得到一个 404 not found 由 symfony 构建,index.php 是由 apache 找到的)。我不明白问题可能出在哪里:/

编辑:下面是 .htaccess 文件的内容(在公共目录中)。我不修改,这是symfony默认的htaccess文件:

# Use the front controller as index file. It serves as a fallback solution when
# every other rewrite/redirect fails (e.g. in an aliased environment without
# mod_rewrite). Additionally, this reduces the matching process for the
# start page (path "/") because otherwise Apache will apply the rewriting rules
# to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl).
DirectoryIndex index.php

# By default, Apache does not evaluate symbolic links if you did not enable this
# feature in your server configuration. Uncomment the following line if you
# install assets as symlinks or if you experience problems related to symlinks
# when compiling LESS/Sass/CoffeScript assets.
# Options FollowSymlinks

# Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve
# to the front controller "/index.php" but be rewritten to "/index.php/index".
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

<IfModule mod_rewrite.c>
    RewriteEngine On

    # Determine the RewriteBase automatically and set it as environment variable.
    # If you are using Apache aliases to do mass virtual hosting or installed the
    # project in a subdirectory, the base path will be prepended to allow proper
    # resolution of the index.php file and to redirect to the correct URI. It will
    # work in environments without path prefix as well, providing a safe, one-size
    # fits all solution. But as you do not need it in this case, you can comment
    # the following 2 lines to eliminate the overhead.
    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]

    # Sets the HTTP_AUTHORIZATION header removed by Apache
    RewriteCond %{HTTP:Authorization} .
    RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect to URI without front controller to prevent duplicate content
    # (with and without `/index.php`). Only do this redirect on the initial
    # rewrite by Apache and not on subsequent cycles. Otherwise we would get an
    # endless redirect loop (request -> rewrite to front controller ->
    # redirect -> request -> ...).
    # So in case you get a "too many redirects" error or you always get redirected
    # to the start page because your Apache does not expose the REDIRECT_STATUS
    # environment variable, you have 2 choices:
    # - disable this feature by commenting the following 2 lines or
    # - use Apache >= 2.3.9 and replace all L flags by END flags and remove the
    #   following RewriteCond (best solution)
    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]

    # If the requested filename exists, simply serve it.
    # We only want to let Apache serve files and not directories.
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^ - [L]

    # Rewrite all other queries to the front controller.
    RewriteRule ^ %{ENV:BASE}/index.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 307 ^/$ /index.php/
        # RedirectTemp cannot be used instead
    </IfModule>
</IfModule>

编辑 3:我使用 &lt;?php echo 'foo';?&gt; 在公共目录中创建了 php 文件 foo.php,我可以通过浏览器毫无问题地访问该文件。 symfony 出了点问题,但无法找到我的错误在哪里......

感谢您的帮助!

【问题讨论】:

  • 任何日志?查看var/logs/prod.yml周围的文件
  • 在 var/log 中我有 3 个文件 dev.logprod.deprecations.logprod.log。当我转到localhost/myapp/public 时,没有任何文件被更改。 (在 /var/log/apache2/ 中,只有文件 access.log 改变)
  • 您是否安装了htaccess 文件?通常,在生产中,我希望使用虚拟主机,但自从我有幸使用 apache 以来已经有一段时间了。
  • 我不是 htaccess 专家。但是我在公共目录中看到了一个 .htaccess 文件,我没有修改它。我将编辑我的帖子以显示此 htaccess 文件的内容。
  • 你有php bin/console cache:clear --env=prod吗?

标签: symfony symfony4 production-environment


【解决方案1】:

我太傻了。在开发模式下,主页('/')不会显示 404,而是 symfony 自动生成的页面。

我在 prod 模式下出现 404 的原因是我没有为路径“/”创建带有路由的控制器。

所以,prod env 主页中的这个 404 是合乎逻辑的

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-12-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多