为用户提供一定规模的动态自定义 URL
我需要为我的用户创建自定义网址,例如:www.example.com/alpha、www.example.com/beta。我正在创建符号链接目录,我认为这是原型设计的一个很好的起点。然而,现在我需要大规模地执行此操作,在负载均衡器后面的多个 Web 服务器上运行。我不确定这样做的正确方法。
I need to create custom urls for my users, for ex: www.example.com/alpha, www.example.com/beta. I was creating symlinked directories, which I think worked as a good starting point for prototyping. However, now I need to do this at a scale, running on several web servers behind a load balancer. I am not sure on the right way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 Apache 服务器上运行并且可以访问 .htaccess 文件,请在 .htaccess 文件中尝试此操作。
这将在内部将所有 URL 指向 index.php?p=*。
用户将看到 .html,服务器将其解释为指向的 url。
示例:yourdomain.com/cocacola.html -> yourdomain.com/index.php?p=cocacola
If you are running on an Apache server and you have access to .htaccess files then try this in a .htaccess file
This will point all URL's to index.php?p=* internally.
A user will see the .html, and the server interprets it as the pointed url.
Example: yourdomain.com/cocacola.html -> yourdomain.com/index.php?p=cocacola