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