[[symfony]]
#contents
*Apacheの設定(バーチャルホスト) [#p4225068]
<apache_root>/conf/extra/httpd-vhosts.conf
ServerName www.hogehoge.com
DocumentRoot "/home/hogehoge/myproject/web/frontend"
DirectoryIndex index.php
ErrorLog logs/www.hogehoge.error
CustomLog logs/www.hogehoge.access combined
AllowOverride All
Allow from All
ServerName dev.hogehoge.com
DocumentRoot "/home/hogehoge/myproject/web/backend"
DirectoryIndex backend.php
ErrorLog logs/dev.hogehoge.error
CustomLog logs/dev.hogehoge.access combined
AllowOverride All
Allow from All
*.htaccessの作成 [#ub959549]
プロジェクトディレクトリのwebディレクトリにアプリケーション名でディレクトリを作成し、.htaccessを作成。
web/
+frontend/
| --.htaccess
+backend/
|--.htaccess
*.phpを修正 [#cb9e21fb]
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/..'));
→
define('SF_ROOT_DIR', realpath(dirname(__FILE__).'/../..'));