1

我有一个名为 SymfonyProject 的 Symfony2 项目。

到目前为止,我有一个指向该项目的 nginx 配置文件www.symfonyproject.com

我在 SymfonyProject 中开发了一些静态树枝页面,我想用另一个 url 访问它们:www.symfonyproject2.com

所以,www.symfonyproject2.com 只会从 SymfonyProject 访问一条路由。

如何用 Nginx 做到这一点?我在启用的站点中创建了另一个配置文件,但不知道如何将流量重定向到特定的 symfony2 路由。

4

1 回答 1

1

Actually your nginx can use the www.symfonyproject2.com as alias and inside symfony you can use a route which is going to match by hostname: http://symfony.com/doc/current/components/routing/hostname_pattern.html

This should be enough to solve your problem!

Let me know if it helped you!

于 2016-01-14T10:43:14.180 回答