Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Symfony2。
从 URL 获取变量的最佳实践是什么。我正在使用子域来获取城市。例如:paris.website.com
我如何将巴黎作为变量。我相信我需要使用内核和 htaccess,但我还没有弄清楚如何。
谢谢,如果你能把我放在正确的轨道上。
干杯,
皮埃尔。
你应该阅读 Symfony 的文档。Symfony 的基本组件之一是提供您所需要的路由:
www.mysite.com/paris/
使用子域不是解决方案,但在 Symfony 中配置路由后,您可以使用 .htaccess 将子域 paris.mysite.com 重写为 www.mysite.com/paris(如果 Web 服务器允许)。