0

私はSymfonyにかなり慣れていないので、それを学んでいます。Symfony のドキュメントは私のすべての懸念事項の解決に役立ち、これまでのすべての質問に答えてくれましたが、ルーティングに関するこの質問の解決策を見つけることができませんでした。

ページにアクセスするたびに、ルーティングをトリガーするためにフロントコントローラーを指定する必要があります。

http://localhost/symfony/app_dev.php/test

URL をさらにクリーンアップするためにやりたいことは、フロント コントローラーを省略することです。

http://localhost/symfony/test

これは簡単なことかもしれませんが、その方法を説明しているSOの質問やドキュメントページを1つも見つけることができませんでした(可能な場合)。フロントコントローラーの名前を index.php に変更しようとしましたが、残念ながらうまくいきません。

4

1 に答える 1

1

httpd.conf でオーバーライドが許可されている場合

NameVirtualHost *:80
<VirtualHost *:80>
  ServerName foo.localhost.com
  DocumentRoot "/Projects/YourProject/web"
  <Directory "/Projects/YourProject/web">
    Options Indexes FollowSymLinks
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

この web/.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 app.php

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteCond %{ENV:REDIRECT_STATUS} ^$
    RewriteRule ^app.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_dev.php/
        # RedirectTemp cannot be used instead
    </IfModule>
</IfModule>

ifmodule が有効になっていることを確認してください。リンク

したがって、prod 環境では app_dev.php を app.php に置き換えます。

環境ごとに異なるパラメーターを使用することもできます。これを行う最善の方法は、.gitignore に入れて 2 つのファイルを作成することです。

parameters.prod.yml
parameters.dev.yml

ステージに応じて、次のような同じディレクトリにシンボリックリンクを含む parameters.yml ファイルを作成します。

ln -s parameters.dev.yml parameters.yml 
于 2014-06-26T13:49:03.917 に答える