更改特定网址的网页目录
change web directory for specific urls
我们现在在 symfony 1.4 上有我们的前端网站,我们正在寻找为特定前端 url 使用 symfony 3 的可能性,例如 http://staging.viventura.de/reisen/peru or http://staging.viventura.de/reisen/peru/xpbc
是否可以从 htaccess 文件更改 Web 目录,以便某些 URL 转到另一个 Web 目录?
非常感谢。
我会使用 apache mod_alias。
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
假设 Symfony1 位置上的主项目是 /var/www/sf-1
,
并且 Symfony3 是 /var/www/sf-3
.
注意: 不允许出现在 .htaccess
中,只能出现在 httpd|apache2|[vhostname].conf
配置文件中。
我们现在在 symfony 1.4 上有我们的前端网站,我们正在寻找为特定前端 url 使用 symfony 3 的可能性,例如 http://staging.viventura.de/reisen/peru or http://staging.viventura.de/reisen/peru/xpbc
是否可以从 htaccess 文件更改 Web 目录,以便某些 URL 转到另一个 Web 目录?
非常感谢。
我会使用 apache mod_alias。
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
假设 Symfony1 位置上的主项目是 /var/www/sf-1
,
并且 Symfony3 是 /var/www/sf-3
.
注意: 不允许出现在 .htaccess
中,只能出现在 httpd|apache2|[vhostname].conf
配置文件中。