我们现在拥有symfony 1.4上的前端网站,我们正在寻找为特定前端网址设置symfony 3的可能性,例如http://staging.viventura.de/reisen/peru或http://staging.viventura.de/reisen/peru/xpbc
是否有可能从htaccess文件更改web目录,以便将某些URL转到另一个Web目录?
非常感谢。
答案 0 :(得分:0)
我会使用apache mod_alias。
filename string
假设Symfony1位置的主项目是ServerName staging.viventura.de
DocumentRoot /var/www/sf-1/web
Alias /reisen/peru /var/www/sf-3/web
Alias /reisen/peru/xpbc /var/www/sf-3/web
,
并且Symfony3是/var/www/sf-1
。
注意: /var/www/sf-3
中不允许,仅在.htaccess
配置文件中。